the _____ key word is used to create object in javascript
Answers
Answered by
5
The new Keyword is used to create object in JavaScript.
Answered by
2
Answer:
The new keyword is used in javascript to create a object from a constructor function. The new keyword has to be placed before the constructor function call and will do the following things: Creates a new object. Sets the prototype of this object to the constructor function's prototype property.
Similar questions