Skip to content

Instantly share code, notes, and snippets.

@rochnyak-d-i
Created October 28, 2014 04:53
Show Gist options
  • Save rochnyak-d-i/8502b3b197d16789c3d6 to your computer and use it in GitHub Desktop.
Save rochnyak-d-i/8502b3b197d16789c3d6 to your computer and use it in GitHub Desktop.
JS создание объекта
Object.create || Object.create = function object(o) {
function F(){}
F.prototype = o;
return new F();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment