Skip to content

Instantly share code, notes, and snippets.

@pmurias
Created April 6, 2019 14:28
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 pmurias/91e4b77f909d51e504659f4597eb50db to your computer and use it in GitHub Desktop.
Save pmurias/91e4b77f909d51e504659f4597eb50db to your computer and use it in GitHub Desktop.
chrome bug?
const array = [0,1,2,3,4,5,6];
array.shift();
array.shift();
array.shift();
array[3] = '_set_';
array[10] = '_set_';
console.log('atpos', array.map(x => x.toString()).join(','));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment