HOME/Articles/

JavaScriptのprototypeを使う

Article Outline
String.prototype.equals = function (s) {
  return this.toString() === s;
};

"hello".equals("world"); // false
"hello".equals("hello"); // true

prototypeを使えばオブジェクトを拡張できる。