Giter Site home page Giter Site logo

Comments (3)

hshoff avatar hshoff commented on May 5, 2024

Correct, there are two different use cases. Use new Object() when you want to many instances with shared functionality. Use {} for one off objects.

With the style guide, we were just trying to say when you're making a plain object it's preferred you use object literal syntax. to avoid this:

var dragon = new Object();
dragon.firstName = 'fred';
dragon.lastName = 'the dragon';

// preferred
var dragon = {
  firstName: 'fred',
  lastName: 'the dragon'
};

If you need to use new Object() to share functionality between different instances, that's okay too.

Here's a great read on the different ways to create objects: Five ways to create objects…

from javascript.

spikebrehm avatar spikebrehm commented on May 5, 2024

I can't think of any reason it would be a good idea to use new Object() vs {}. Now, new MyObject() is a different story.

from javascript.

ocrumbs avatar ocrumbs commented on May 5, 2024

new object() works fundamentally very similar to how jquery plugins work. "Create it once and then reimplement over and over again by instantiating". The other option can be a bit clumsy to achieve that use case. At the OS level a new memory block is created for every instance, that will avoid unnecessary use of CPU cycles.

from javascript.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.