Created
December 15, 2020 14:27
-
-
Save samuelpath/fff8cf86b0165efce2ee662052952ec9 to your computer and use it in GitHub Desktop.
Const avec des objets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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