91-9990449935 0120-4256464 |
JavaScript ObjectsA javaScript object is an entity having state and behavior (properties and method). For example: car, pen, bike, chair, glass, keyboard, monitor etc. JavaScript is an object-based language. Everything is an object in JavaScript. JavaScript is template based not class based. Here, we don't create class to get the object. But, we direct create objects. Creating Objects in JavaScriptThere are 3 ways to create objects.
1) JavaScript Object by object literalThe syntax of creating object using object literal is given below: As you can see, property and value is separated by : (colon). Let’s see the simple example of creating object in JavaScript. Test it NowOutput of the above example2) By creating instance of ObjectThe syntax of creating object directly is given below: Here, new keyword is used to create object. Let’s see the example of creating object directly. Test it NowOutput of the above example3) By using an Object constructorHere, you need to create function with arguments. Each argument value can be assigned in the current object by using this keyword. The this keyword refers to the current object. The example of creating object by object constructor is given below. Test it NowOutput of the above exampleDefining method in JavaScript ObjectWe can define method in JavaScript object. But before defining method, we need to add property in the function with same name as method. The example of defining method in object is given below. Test it NowOutput of the above example
Next TopicJavascript Array
|