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'];

Related Javascript Mentoring answers

All answers ▸

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


What does the following code do and why? console.log(1+"2")


Find the sum of all multiples of 2 less than 10000


What is the difference between global and local variables?


We're here to help

contact us iconContact usWhatsapp logoMessage us on Whatsapptelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2024

Terms & Conditions|Privacy Policy