Skip to content

Instantly share code, notes, and snippets.

@joshuakfarrar
Created October 26, 2015 17:27
Show Gist options
  • Save joshuakfarrar/a3a4b3e4144a56faf5df to your computer and use it in GitHub Desktop.
Save joshuakfarrar/a3a4b3e4144a56faf5df to your computer and use it in GitHub Desktop.
> var o = new Object();
undefined
> o
{}
> o.hasOwnProperty('test');
false
> o.test = 'testing!';
'testing!'
> o.hasOwnProperty('test');
true
> o.hasOwnProperty('rawr');
false
> o
{ test: 'testing!' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment