Skip to content

Instantly share code, notes, and snippets.

@scotthernandez
Created September 30, 2010 01:25
Show Gist options
  • Save scotthernandez/603864 to your computer and use it in GitHub Desktop.
Save scotthernandez/603864 to your computer and use it in GitHub Desktop.
> a = [1]; a[4] = a[4] ? 1 : a[4] + 1;
NaN
> a
[ 1, undefined, undefined, undefined, NaN ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment