2010-10-09から1日間の記事一覧

JavaScriptメモ

Object.create メソッド p.26, 3.5 プロトタイプ if (typeof Object.create !== 'function') { Object.create = function (o) { var F = function () {}; F.prototype = o; return new F(); } } 実行例 var A = {}; var a = Object.create(A); print(a insta…