CRT-600 Exam Question 46

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 ?
  • CRT-600 Exam Question 47

    Which three options show valid methods for creating a fat arrow function?
    Choose 3 answers
  • CRT-600 Exam Question 48

    A developer is setting up a Node,js server and is creating a script at the root of the source code, index,js, that will start the server when executed. The developer declares a variable that needs the folder location that the code executes from.
    Which global variable can be used in the script?
  • CRT-600 Exam Question 49

    Refer to the following code that imports a module named utils:
    import (foo, bar) from '/path/Utils.js';
    foo() ;
    bar() ;
    Which two implementations of Utils.js export foo and bar such that the code above runs without error?
    Choose 2 answers
  • CRT-600 Exam Question 50

    Refer to the code below:
    function changeValue(param) {
    Param =5;
    }
    Let a =10;
    Let b =5;
    changeValue(b);
    Const result = a+ " - "+ b;
    What is the value of result when code executes?