以下のコードで新しいプロパティを追加した後、オブジェクトはどうなりますか? ```javascript let book = { title: "JavaScriptの基礎" }; book.pages = 300; ```