Skip to content

Instantly share code, notes, and snippets.

@Noitidart
Created January 14, 2018 18:34
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 Noitidart/1916f17a96dfe24f5e70b808198e6697 to your computer and use it in GitHub Desktop.
Save Noitidart/1916f17a96dfe24f5e70b808198e6697 to your computer and use it in GitHub Desktop.
const a = undefined;
const b = [ ...a, 9 ]; // does not work
// const b = { ...a, '9': 9}; // works
alert(JSON.stringify(b));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment