List of questions
Related questions
Question 141 - Certified JavaScript Developer I discussion
Refer to code below:
Const objBook = {
Title: 'Javascript',
}; Object.preventExtensions(objBook);
Const newObjBook = objBook;
newObjectBook.author = 'Robert';
What are the values of objBook and newObjBook respectively ?
A.
[title: "javaScript"] [title: "javaScript"]
B.
{author: "Robert", title: "javaScript}Undefined
C.
{author: "Robert", title: "javaScript}{author: "Robert", title: "javaScript}
D.
{author: "Robert"}{author: "Robert", title: "javaScript}
Your answer:
0 comments
Sorted by
Leave a comment first