Skip to content

Instantly share code, notes, and snippets.

@samuelpath
Created December 15, 2020 14:27
Show Gist options
  • Save samuelpath/fff8cf86b0165efce2ee662052952ec9 to your computer and use it in GitHub Desktop.
Save samuelpath/fff8cf86b0165efce2ee662052952ec9 to your computer and use it in GitHub Desktop.
Const avec des objets
const samuelPath = { age: 30, profession: "instructeur JavaScript" };
samuelPath.profession = "instructeur web avancé";
console.log(samuelPath.profession);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment