Réponse
const Bob = {
name:"Bob"
}
const Bobbis = Bob;
Bob.name="Boby";
console.log(Bobbis.name);//affiche "boby"
console.log(Bob.name);//affiche "boby"
Colonne
Question
Qu'est ce qu'une copie par référence ?
Thématique