Skip to content

Instantly share code, notes, and snippets.

@IhwanID
Created November 3, 2025 07:52
Show Gist options
  • Save IhwanID/dca8309898453871125cd3993ab36a45 to your computer and use it in GitHub Desktop.
Save IhwanID/dca8309898453871125cd3993ab36a45 to your computer and use it in GitHub Desktop.
Shorthand Property Name
const nama = "Ihwan"
const umur = 25
const json = { name : nama, age: umur }
console.log(json)
const user = { nama, umur }
console.log(user)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment