How do you create objects in javascript?

Objects in JavaScript are defined differently to most other languages. You define (and create) a JavaScript object with an object literal:var person = {firstName:"John", lastName:"Doe", age:50, eyeColor:"blue"}; This would create an "person" object. Within this object each name:value pair is called a property . Each objects property can be accessed in 2 ways:person.lastName; orperson['lastName'];

KN

Related Javascript Mentoring answers

All answers ▸

How are objects created in arrays


Suppose that you have a <p> element with an id of 'id1'. Use javascript to set the inner html of this element to 'hello!'


How would you change the background colour of a div with the id "colourme" to purple?


Make button that says how many times it has been clicked.