Skip to content

Instantly share code, notes, and snippets.

@gbengaoyetade
Created November 15, 2020 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gbengaoyetade/5533a7755b14bf71ef054b11059350ec to your computer and use it in GitHub Desktop.
Save gbengaoyetade/5533a7755b14bf71ef054b11059350ec to your computer and use it in GitHub Desktop.
let name = "Hamilton"
name.toUpperCase()
console.log(name)
const user = { name: "Dale" age: 54 }
const anotherUser = user;
anotherUser.name = "Michael"
console.log(user)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment