Skip to content

Instantly share code, notes, and snippets.

@codemilli
Last active April 6, 2016 19:36
Show Gist options
  • Select an option

  • Save codemilli/c64c0a4a35b6fdcf3cc7718e55c8e736 to your computer and use it in GitHub Desktop.

Select an option

Save codemilli/c64c0a4a35b6fdcf3cc7718e55c8e736 to your computer and use it in GitHub Desktop.
const a = { prop: 'haha' };
console.log('prop => ', a.prop); // haha
a.prop = 'hihi';
console.log('prop => ', a.prop); // hihi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment