ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 141 - Certified JavaScript Developer I discussion

Report
Export

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"]
Answers
A.
[title: "javaScript"] [title: "javaScript"]
B.
{author: "Robert", title: "javaScript}Undefined
Answers
B.
{author: "Robert", title: "javaScript}Undefined
C.
{author: "Robert", title: "javaScript}{author: "Robert", title: "javaScript}
Answers
C.
{author: "Robert", title: "javaScript}{author: "Robert", title: "javaScript}
D.
{author: "Robert"}{author: "Robert", title: "javaScript}
Answers
D.
{author: "Robert"}{author: "Robert", title: "javaScript}
Suggested answer: A
asked 23/09/2024
ME BOX
30 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first