You have already completed these exercises!
Do you want to take them again?
You completed the JS Object Properties Exercises from W3Schools.com
Share on:
Consider the following object:const car = { brand : 'Volvo', model : 'EX90'};What is NOT a correct syntax to alert 'Volvo'?
const car = { brand : 'Volvo', model : 'EX90'};
alert(car[brand])
alert(car.brand)
alert(car['brand'])