Learn JavaScript OBJECTS in 7 minutes! 🧍

Published: 14 November 2023
on channel: Bro Code
59,948
1.6k

#JavaScript #tutorial #course

// object = A collection of related properties and/or methods
// Can represent real world objects (people, products, places)
// object = {key:value,
// function()}

const person1 = {
firstName: "Spongebob",
lastName: "Squarepants",
age: 30,
isEmployed: true,
sayHello: function(){console.log("Hi! I am Spongebob!")},
eat: function(){console.log("I am eating a Krabby Patty")},
}

console.log(person1.firstName);
person1.sayHello();
person1.eat();


Watch video Learn JavaScript OBJECTS in 7 minutes! 🧍 online, duration hours minute second in high quality that is uploaded to the channel Bro Code 14 November 2023. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 59,948 times and liked it 1.6 thousand visitors.