Skip to content

Instantly share code, notes, and snippets.

@tomoh1r
Created December 15, 2012 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomoh1r/4295691 to your computer and use it in GitHub Desktop.
Save tomoh1r/4295691 to your computer and use it in GitHub Desktop.
プロトタイプに何が設定されているか確認
'use strict';
var Hoge = Object.create(null);
var h = Object.create(Hoge);
console.log(Hoge == Object.getPrototypeOf(h));
// => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment