Skip to content

Instantly share code, notes, and snippets.

@kjk
Created November 8, 2019 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjk/17433537eda5bb31d914bd4e984c1511 to your computer and use it in GitHub Desktop.
Save kjk/17433537eda5bb31d914bd4e984c1511 to your computer and use it in GitHub Desktop.
// :glot
const cars = ["Model 3", "Leaf", "Bolt"];
console.log("first car:", cars[0]);
const mixedTypes = ["string"];
mixedTypes.push(5);
console.log("array with mixed types:", mixedTypes);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment