Skip to content

Instantly share code, notes, and snippets.

@ortichon
Last active May 27, 2017 19:22
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 ortichon/26035ef0e434fc6ab1a568e3c66348f5 to your computer and use it in GitHub Desktop.
Save ortichon/26035ef0e434fc6ab1a568e3c66348f5 to your computer and use it in GitHub Desktop.
JavaScript Interview Question #1
var variables = { set number(value) { this._number = value; }, get number() { return Math.random(); } }
variables.number = 5;
console.log(variables.number === variables.number);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment