Full Stack Web Development Internship Program
- 29k Enrolled Learners
- Weekend/Weekday
- Live Class
JavaScript is an Object-Oriented Programming language. The objects form the building blocks which are considered to be the most important data-type for the programming language. This article will provide in-depth knowledge about JavaScript Objects, how they are created and defined in the following sequence:
JavaScript objects are similar to objects in real life which consists of different attributes and properties. These objects are defined as an unordered collection of related data, that are of primitive or reference types. These are defined in the form of “key: value” pairs.
These keys are variables or functions which are called as properties and methods of an object. You can create a JavaScript object as:
let ObjectName = { Property1 : "Value", Property2 : "Value", ... ... }
There are 3 ways to create a new object:
Syntax:
object={property1:value1,property2:value2.....propertyN:valueN}
Example:
<script> employee={id:700,name:"Evan",salary:30000} document.write(employee.id+" "+employee.name+" "+employee.salary); </script>
Output:
700 Evan 30000
Syntax:
var objectname=new Object();
Example:
<script> var emp=new Object(); emp.id=701; emp.name="Karan"; emp.salary=40000; document.write(emp.id+" "+emp.name+" "+emp.salary); </script>
Output:
701 Karan 40000
A function is created with arguments. Each argument value can be assigned in the current object by using this keyword.
<script> function employee(id,name,salary){ this.id=id; this.name=name; this.salary=salary; } emp=new employee(702,"Neha",35000); document.write(emp.id+" "+emp.name+" "+emp.salary); </script>
Output:
702 Neha 35000
A property of an object is a variable that is attached to the object. They are basically the same as JavaScript variables, except for the attachment to objects.
The properties of an object define the characteristics of the object. You can access the properties of an object with a simple dot-notation such as:
objectName.propertyName
You can define a property by assigning it a value. For example, let’s create an object named Car and give it properties like company, model, and color. It can be defined as:
var Car = new Object(); Car.company = 'Ford'; Car.model = 'Mustang'; Car.color = 'Red';
A method is a function associated with an object. It is also a property of an object. Methods are defined as the normal functions but they have to be assigned as the property of an object.
The object method can be accessed as:
objectName.methodName()
Example:
var person = { firstName: "Tessa", lastName : "Den", empid : 7100, fullName : function() { return this.firstName + " " + this.lastName; } };
Output:
Tessa Den
Some of the commonly used built-in methods are:
Methods | Description |
Object.assign() | It is used to copy enumerable and own properties from a source object to a target object |
Object.create() | It is used to create a new object with the specified prototype object and properties |
Object.defineProperty() | It is used to define behavioral attributes of the property |
Object.entries() | It returns an array with the key & value pairs |
Object.freeze() | It prevents the existing properties from getting removed |
Accessors
The JavaScript Accessors consist of Getters and Setters which are used to define the object accessors.
Let’s take an example and see how Getters are used to get any value of the property:
var person = { firstName: "Daisy", lastName : "Green", empid : 401, get id() { return this.empid; } }; document.getElementById("demo").innerHTML = person.id;
Output:
401
Let’s take an example and see how Setters are used to set any value of the property:
var person = { firstName: "Daisy", lastName : "Green", empid : 00, set id(value) { this.empid = value; } }; person.id = 401; document.getElementById("demo").innerHTML = person.empid;
Output:
401
All JavaScript objects inherit properties and methods from a prototype. For example:
The JavaScript prototype property is used to add new properties to object constructors.
Example:
function Person(first, last, id, age) { this.firstName = first; this.lastName = last; this.empid = id; this.age = age; } Person.prototype.nationality = "Indian";
The prototype property also allows you to add new methods to objects constructors.
Example:
function Person(first, last, id, age) { //Adding methods to constructors this.firstName = first; this.lastName = last; this.empid = id; this.age = age; } Person.prototype.name = function() { return this.firstName + " " + this.lastName; };
You can modify your own prototypes but never modify the prototypes of standard JavaScript objects.
Related Learning: Javascript Interview Questions
With this, we have come to the end of our article. I hope you understood JavaScript Objects and the different methods to define them.
Now that you know about JavaScript Objects, check out the Web Development Certification Training by Edureka. Web Development Certification Training will help you Learn how to create impressive websites using HTML5, CSS3, Twitter Bootstrap 3, jQuery and Google APIs and deploy it to Amazon Simple Storage Service(S3).
Check out the Angular Course Online by Edureka, a trusted online learning company with a network of more than 250,000 satisfied learners spread across the globe. Angular is a JavaScript framework that is used to create scalable, enterprise, and performance client-side web applications. With Angular framework adoption being high, performance management of the application is community-driven indirectly driving better job opportunities.
If you want to get trained in React and wish to develop interesting UI’s on your own, then check out the React Certification by Edureka, a trusted online learning company with a network of more than 250,000 satisfied learners spread across the globe.
Got a question for us? Please mention it in the comments section of “JavaScript Object” and we will get back to you.
Course Name | Date | Details |
---|---|---|
Java Course Online | Class Starts on 7th December,2024 7th December SAT&SUN (Weekend Batch) | View Details |
edureka.co