Skip to content

Instantly share code, notes, and snippets.

@iampava
Last active August 2, 2017 16:38
Show Gist options
  • Save iampava/b2a36b2c0c1521be7608ef9542917312 to your computer and use it in GitHub Desktop.
Save iampava/b2a36b2c0c1521be7608ef9542917312 to your computer and use it in GitHub Desktop.
Hacking Javascript |
var money;
Array.prototype.push = function(value){
this[this.length] = value; //we keep the intended push functionality so that mum doesn't notice we hacked the PiggyBank
money = this;
}
sharedPiggyBank.push('$22');
sharedPiggyBank.push('$33'); // money = ['$22', '$33'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment