Skip to content

Instantly share code, notes, and snippets.

@davefearon
Created May 24, 2016 15:29
Show Gist options
  • Save davefearon/5e4f6e33897a985789aa6be97f9b8761 to your computer and use it in GitHub Desktop.
Save davefearon/5e4f6e33897a985789aa6be97f9b8761 to your computer and use it in GitHub Desktop.
This is a test
Number.prototype.yoString = function() {
return 'Yo, ' + this + '!';
};
var num = 3;
console.log(num.yoString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment