Skip to content

Instantly share code, notes, and snippets.

@wlmeurer
Created November 10, 2010 22:08
Show Gist options
  • Save wlmeurer/671630 to your computer and use it in GitHub Desktop.
Save wlmeurer/671630 to your computer and use it in GitHub Desktop.
Weird Chrome console behavior
var arr = [];
for(var i=0;i<3;i++){
arr.push(i);
if(i==2)arr='blah';
console.log('foo',arr);
}
/*
(2) foo [0,1,2]
foo blah
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment