https://developer.mozilla.org/en-US/docs/Glossary/Primitive
typeof
command. Note that typeof
returns the name of the data type as a string.undefined
value by default.console.log(typeof 2.5); // -> number
console.log(typeof "one two three"); // -> string
console.log(typeof false); // -> boolean
let nr = 2.5;
nr = nr / 2;
console.log(typeof nr); // -> number
let name1;
console.log(typeof name1); // -> undefined
https://www.codinn.dev/javascript/complex-data-types
0
, so the first element will have an index of 0, the second an index of 1
, and so on.let a = [10, 20, "en to tre", true, 50];
a[4] = a[4] * 2;
console.log(a[0]); // -> 10
console.log(a[2]); // -> en to tre
console.log(a[4]); // -> 100
indexes
, which define their position in the collection, but by means of keys
(i.e. we "associate" an element with a key).