fukke.cafe

JavaScriptのprototypeを使う

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

"hello".equals("world"); // false
"hello".equals("hello"); // true
prototypeを使えばオブジェクトを拡張できる。

公開日 2022/08/25

Thanks you for reading.