#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 without registration, duration hours minute second in high quality. This video was added by user Bro Code 14 November 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 59,948 once and liked it 1.6 thousand people.