Skip to content

Instantly share code, notes, and snippets.

@tomoh1r
Created December 15, 2012 14:36
Show Gist options
  • Select an option

  • Save tomoh1r/4295691 to your computer and use it in GitHub Desktop.

Select an option

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