Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created May 4, 2013 11:11
Show Gist options
  • Save pbrewczynski/5517189 to your computer and use it in GitHub Desktop.
Save pbrewczynski/5517189 to your computer and use it in GitHub Desktop.
var a = function (x, y) {
"use strict";
Array.prototype.splice.call(arguments, 1, 1);
console.log(y); //432 when not "use strict" or ES5 not supported
};
a(2, 4, 432, 432);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment