JS : Objects Flashcards

1
Q

Nommez deux objets déjà intégrés au Javascript ?

A

Les arrays (tableaux) et les fonctions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Comment créer un objet assigné à une variable ?

A

var spiderman = { };

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Indiquez les 2 façons d’accéder à une propriété d’un objet ?

A

dot notation
ex. superman.name
bracket notation
superman[‘name’]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Comment vérifier les propriétés d’un objet qu’il dispose en propre ?

A

superman.hasOwnProperty(‘name’);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Comment trouver toutes les propriétés d’un objet ?

A

for(var key in superman) { console.log(key + “: “ + superman[key]); }

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Comment ajouter une nouvelle propriété ?

A

ex. superman.city = “Metropolis”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Lorsque des objets sont imbriqués, comment accéder à leur propriété ?

A

Par la dot ou la bracket notation

jla.wonderWoman.realName

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Créer l’objet hotel en utilisant la notation litérale?

A
var hotel = {
propriété: valeur
};
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Créer l’objet hotel en utilisant la notation construction?

A
var hotel = new Object(); 
hotel.propriété =  'valeur';
How well did you know this?
1
Not at all
2
3
4
5
Perfectly