Contact Us || Privacy Policy || About Us |
|
JS ObjectEvery thing is An object is real word entity that having state and behavior (properties and method). Example:- car, Pen,chair, computer How to creat objects in jsThere are three way to create objects that is.
1) Object Literal in JSSyntax: Example: Test it Now2) Using new keyword in JSSyntax: Use this syntax create object Example: Test it Now3) By using an Constructor ObjectObject constructor create function with arguments where argument value can be assigned in the current object by using this keyword. Example: Test it Now |