Skip to content

Instantly share code, notes, and snippets.

@rmurphey
Created October 24, 2009 21:56
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 rmurphey/217759 to your computer and use it in GitHub Desktop.
Save rmurphey/217759 to your computer and use it in GitHub Desktop.
things i love about javascript
var foo = [ 1, 2, 3, { a : 'b' } ];
var bar = foo[foo.length-1];
bar.c = 'bar';
console.log(foo); // [ 1, 2, 3, { a : 'b', c : 'bar' } ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment