Basic JavaScript Question:
Download Questions PDF

How to create an object using JavaScript?

Answer:

Objects can be created in many ways. One way is to create the object and add the fields directly.
<script type="text/javascript">
var myMovie = new Object();
myMovie.title = "Aliens";
myMovie.director = "James Cameron";
document.write("movie: title ""+myMovie.title+""");
<
This produces
movie: title "Aliens"
To create an object write a method with the name of object and invoke the method with "new".
<script type="text/javascript">
function movie(title, director) {
this.title = title;
this.director = director;
}
var aliens = new movie("Aliens","Cameron");
document.write("aliens:"+aliens.toString());
</script>
This produces
aliens:[object Object]

Use an abbreviated format for creating fields using a ":" to separate the name of the field from its value. This is equivalent to the above code using "this.".
<script type="text/javascript">
function movie(title, director) {
title : title;
director : director;
}
var aliens = new movie("Aliens","Cameron");
document.write("aliens:"+aliens.toString());
</script>
This produces
aliens:[object Object]

Download JavaScript Interview Questions And Answers PDF

Previous QuestionNext Question
How to shift and unshift using JavaScript?How to associate functions with objects using JavaScript?