Skip to content

Instantly share code, notes, and snippets.

@pbrewczynski
Created May 4, 2013 11:08
Show Gist options
  • Save pbrewczynski/5517181 to your computer and use it in GitHub Desktop.
Save pbrewczynski/5517181 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
};
a(2, 4, 432, 432);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment