How do you create a new object in JavaScript?

Answers were Sorted based on User's Feedback



How do you create a new object in JavaScript?..

Answer / sri

The following function can be used as demonstrated to create
an object of class myobject:

function myobject() {
this.containedValue = 0;
this.othercontainedValue = 0;
this.anothercontainedValue = 0;
}

var mything = new myobject();
And there you go, mything is now an instance of class
myobject. It will have the following properties, all of
which will be 0:

* mything.containedValue
* mything.othercontainedValue
* mything.anothercontainedValue

You could also now write
myobject.prototype.newContainedValue = someValue; and all
instances of class myobject will have the property
newContainedValue with value someValue.

Is This Answer Correct ?    7 Yes 4 No

How do you create a new object in JavaScript?..

Answer / nidz

var myObject={} this also creates a new object

Is This Answer Correct ?    4 Yes 2 No

How do you create a new object in JavaScript?..

Answer / elan

var newObject;

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More JavaScript Interview Questions

Is javascript backend or frontend?

0 Answers  


What is a name function in javascript & how to define it?

0 Answers  


How to get an element by class in javascript ?

0 Answers  


What is difference between promise and callback?

0 Answers  


What are the different actions that are performed using javascript?

0 Answers  


How to create an input box?

0 Answers  


What does break and continue statements do in javascript?

0 Answers  


Which operator is used to assign a value to a variable?

0 Answers  


Write a Program of Simple Calculator in JavaScript using HTML.

1 Answers  


what is the purpose of using jsp?

1 Answers  


What are the methods of validating whether the form is secure?

1 Answers  


What web sites do you feel use javascript most effectively (i.e., Best-in-class examples)? The worst?

0 Answers  


Categories