Constructor: new object's name

are we creating a variable -carrot- with an assigned object called Vegetable? that has a parameter of ‘name and color’ with values of ‘carrot and orange’?
so the new object has the same name as the original one? only it is now assigned to a variable const named carrot?

class Vegetable {
  constructor(name, color){
    this.name = name, 
    this.color = color;
  }
}

const carrot = new Vegetable('carrot', 'orange');
console.log(carrot);

//Vegetable {name: 'carrot', color: 'orange'}

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

1 Like

A Vegetable is a specific type of object. carrot is a single variable with the type of Vegetable.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.