Quick actions

cmd+k|ctrl+k

Navigation

Languages

Essential Javascript / Basic data types

Snippet info

Language

JavaScript

Visibility

public

Author

kkowalczyk

Created

2019-03-27T06:56:04Z

Updated

2019-03-27T06:56:04Z

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);
INFO