Skip to content

Instantly share code, notes, and snippets.

@blackDelta
Created February 19, 2015 08:42
Show Gist options
  • Save blackDelta/6b205dfee14220e5d51e to your computer and use it in GitHub Desktop.
Save blackDelta/6b205dfee14220e5d51e to your computer and use it in GitHub Desktop.
var ninja = {
yell: function (n) {
console.log(n);
return n > 0 ? ninja.yell(n - 1) + 'a' : 'Hiy';
}
}
var tyko = {
yell: ninja.yell
};
var jim = {
yell: tyko.yell
};
ninja.yell = function(n){
console.log(n)
return 'hiyaaaaaa!!!'
};
console.log(jim.yell(5));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment