Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 837027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T05:04:47+00:00 2026-05-15T05:04:47+00:00

Douglas Crockford seems to like the following inheritance approach: if (typeof Object.create !== ‘function’)

  • 0

Douglas Crockford seems to like the following inheritance approach:

if (typeof Object.create !== 'function') {
    Object.create = function (o) {
        function F() {}
        F.prototype = o;
        return new F();
    };
}
newObject = Object.create(oldObject);

It looks OK to me, but how does it differ from John Resig’s simple inheritance approach?

Basically it goes down to

newObject = Object.create(oldObject);

versus

newObject = Object.extend();

And I am interested in theories. Implementation wise there does not seem to be much difference.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T05:04:48+00:00Added an answer on May 15, 2026 at 5:04 am

    The approach is completely different, the Resig technique creates constructor functions, this approach is also known as classical inheritance i.e.:

    var Person = Class.extend({
      init: function(isDancing){
        this.dancing = isDancing;
      }
    });
    
    var p = new Person(true);
    

    As you see, the Person object is actually a constructor function, which is used with the new operator.

    With the Object.create technique, the inheritance is based on instances, where objects inherit from other objects directly, which is also known as Prototypal Inheritance or Differential Inheritance.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to create a function like Douglas Crockford's String.supplant: if (typeof String.prototype.supplant !==
In Douglas Crockford's JavaScript: The Good Parts he recommends that we use functional inheritance.
I've come across a peculiarity with Douglas Crockfords Object.create method which I'm hoping someone
I read here (Douglas Crockford) using prototype operator to add methods to Javascript classes
I recently watched Douglas Crockford's JavaScript presentations , where he raves about JavaScript prototype
I'm struggling with Javascript classical Inheritance 1 . While, in the end Douglas Crockford
At the moment I'm reading Douglas Crockford's book, and the towers of hanoi function
I've been watching Douglas Crockford's talks at YUI Theater, and I have a question
I just started reading on Douglas Crockford's Javascript The Good parts where he explains
In an article on yuiblog Douglas Crockford says that the for in statement will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.