Skip to content

Instantly share code, notes, and snippets.

@regepan
Last active December 30, 2015 08:19
Show Gist options
  • Save regepan/7802193 to your computer and use it in GitHub Desktop.
Save regepan/7802193 to your computer and use it in GitHub Desktop.
console.debug('正解!'.toString());// 正解!
String.prototype.toString = function(){
return 'toStringを上書きしました!';
}
console.debug('正解!'.toString());// toStringを上書きしました!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment