Debugging JavaScript objects with your browserLooping through JavaScript objects

Accès aux élément type Array

<object>[n]

Suppression d'un élément d'un objet :

delete(<objet>.<propriété>)

Sur un Array : supprime l'élément, mais l'attribut length ne change pas → à éviter

→ on utilise la fonction splice() : <array>.splice(<index>,<nombre d'éléments à supprimer après et y compirs l'élément)

Pour ajouter : push(), marche sur un array/objet