How do you create a new object in JavaScript?
Answers were Sorted based on User's Feedback
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 |
What is node ecosystem?
HI friends .am Mohammed Riyash.JMC BCA Tricy. My doubt is. In some websites like bloomberg.com..etc. when MouseOver() action performed.the menuitems will be drop down..and hides when blur()action happened.any body give the code for that..
What is the use of a date object in javascript?
Which parameter of load ()' s callback function has the data?
what is function of stdio.h
Example of using regular expressions for syntax checking in javascript?
What is new function in javascript?
What is negative infinity?
What's relationship between JavaScript and ECMAScript? And What are JavaScript types?
How to access an external javascript file that is stored externally and not embedded?
Does apple use javascript?
What is createtextnode?