Categories: Javascript

What are Objects in Javascript ? – Code Samples

Wrote this article on Objects & Javascript for future reference. Codecademy.org is my favorite go-to-place for learning Javascript.

Javascript Objects could be defined in following three manners.

  • Objects created as Variables
  • Objects created using new Object()
  • Objects created using Constructor

 

Objects created as Variables
// Defining object as a variable
var School = {
    name: "DAV Public School",
    studentsCount: 600,
    admissionOpen: false,
};

School.isAdmissionOpen = function() {
    return this.admissionOpen;
};

School.setAdmissionStatus = function( openOrClosed ) {
    this.admissionOpen = openOrClosed;
};

 

Objects created using new Object()

In the example below, College is an object type.

// Creating object using new Object()  
var College = new Object();
College.name = "IIT Kharagpur";
College.strength = 3500;
College.admissionStatus = false;
College.isAdmissionOpen = function() {
    return this.admissionStatus;
}
College.setAdmissionStatus = function( status ) {
    this.admissionStatus = status;
}

 

Objects created using Constructor

In the example below, EducationalInstitution is created using the constructor which implies that different types of educational institutions such as schools, and colleges could be created using this type, EducationalInstitution. The object types are created using new operator such as that shown in the code below. This is unlike previous two cases which can be used to create specific objects.

Also, pay attention to the “prototype” keyword which ensures that the methods such as isAdmissionOpen and setAdmissionStatus can be called on all objects types created using “new EducationalInstitution”. If “prototype” is not used, method defined on one object type could not be called on other object types created using “new EducationalInstitution”.

“Prototype” is also used to implement inheritance.

// Creating Object using Constructor  
function EducationalInstitution( name, strength ) {
    this.name = name;
    this.strength = strength;
    var admissionStatus = false;
}

EducationalInstitution.prototype.isAdmissionOpen = function() {
    return this.admissionStatus;
}

EducationalInstitution.prototype.setAdmissionStatus = function( status ) {
    this.admissionStatus = status;
}

var davPublicSchool = new EducationalInstitution( "DAV Public School", 600 );
davPublicSchool.setAdmissionStatus( true );

var iitKharagpur = new EducationalInstitution( "IIT Kharagpur", 3500 );
iitKharagpur.setAdmissionStatus( false );

[adsenseyu1]

Latest posts by Ajitesh Kumar (see all)
Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking.

Share
Published by
Ajitesh Kumar

Recent Posts

Agentic AI Design Patterns Examples

In the ever-evolving landscape of agentic AI workflows and applications, understanding and leveraging design patterns…

20 hours ago

List of Agentic AI Resources, Papers, Courses

In this blog, I aim to provide a comprehensive list of valuable resources for learning…

2 days ago

Understanding FAR, FRR, and EER in Auth Systems

Have you ever wondered how systems determine whether to grant or deny access, and how…

4 days ago

Top 10 Gartner Technology Trends for 2025

What revolutionary technologies and industries will define the future of business in 2025? As we…

6 days ago

OpenAI GPT Models in 2024: What’s in it for Data Scientists

For data scientists and machine learning researchers, 2024 has been a landmark year in AI…

1 week ago

Collaborative Writing Use Cases with ChatGPT Canvas

ChatGPT Canvas is a cutting-edge, user-friendly platform that simplifies content creation and elevates collaboration. Whether…

1 week ago