Quick actions

cmd+k|ctrl+k

Navigation

Languages

Essential Javascript / Basic data types

Snippet info

Language

JavaScript

Visibility

public

Author

kkowalczyk

Created

2019-03-11T02:57:00Z

Updated

2019-03-11T02:57:00Z

const cars = ["Model 3", "Leaf", "Bolt"];
console.log(cars[0]); // -> Model 3
const mixedTypes = ["string"];
mixedTypes.push(5);
console.log(mixedTypes); // -> [ 'string', 5 ]
console.log(mixedTypes[1]); // -> 5
INFO