Variables & DataTypes Flashcards
Which datatype is this?
“Hello”
String
Which datatype is this?
42
Number, and in the category Number it’s an integer
Which datatype is this?
true
Boolean
Which datatype is this? And what is inside?
[‘hey’, ‘hello’, ‘hi’]
Array of strings
Which datatype is this? And what is inside?
[1, 2, 3]
Array of integers/numbers
Which datatype is this?
4.05
Number, and in the category Number it’s a float.
Is het: const, let of var?
“the identifier can not be reassigned”
const
Is het: const, let of var?
“I am looking at code that was written before ES6 came out”
var
Is het: const, let of var?
“the identifier can be overwritten”
let
Which datatype is this?
false
Boolean
Which datatype is this?
{greeting: “hello”}
Object with 1 property
The key is greeting and the value “hello”.
The value is a String.
Which datatype is this?
{
greeting: “hello”,
arrayWithNumbers: [1,2,3]
}
Object with 2 properties.
2 keys: greeting and arrayWithNumbers
the value of greeting is a String.
the value of arrayWithNumber is an Array.
Wat is de index van de first item of an Array?
The first index is 0
Hoe kun je het aantal items in een Array zien?
de .length property, voorbeeld: myArray.length
dit is een property van de Array en heeft daarom geen haken aan het einde
Hoe kun je een item toevoegen aan een Array?
De push method, voorbeeld: myArray.push(item)
dit is een array method, met andere worden in de kern is het een functie, daarom zijn hier ronde haken () aanwezig.