What will be the output of the following code snippet?
let book = { title: 'JavaScript Basics', price: 19.99 };
book.price = 14.99;
console.log(book.price);
What will be the output of the following code snippet?
let book = { title: 'JavaScript Basics', price: 19.99 };
book.price = 14.99;
console.log(book.price);