Refer to the code below:new Promise((resolve, reject) => {const fraction = Math.random();if( fraction >0.5) reject("fraction > 0.5, " + fraction); resolve(fraction);}).then(() =>console.log("resolved")).catch((error) => console.error(error)).finally(() => console.log(" when am I called?"));When does Promise.finally on line 08 get called?
Answer(s): D
Refer to the following array:Let arr1 = [ 1, 2, 3, 4, 5 ];Which two lines of code result in a second array, arr2 being created such that arr2 is not a reference to arr1?
Answer(s): A,B
Refer to code below:Function muFunction(reassign){Let x = 1;var y = 1;if( reassign ) {Let x= 2;Var y = 2;console.log(x);console.log(y);}console.log(x);console.log(y);}What is displayed when myFunction(true) is called?
Answer(s): C
A developer wants to create an object from a function in the browser using the code below:Function Monster() { this.name = `hello' };Const z = Monster();What happens due to lack of the new keyword on line 02?
Post your Comments and Discuss Salesforce CRT-600 exam with other Community members:
Raider69 Commented on April 25, 2022 Xengine App makes studying more fun. UNITED STATES
Our website is free, but we have to fight against bots and content theft. We're sorry for the inconvenience caused by these security measures. You can access the rest of the CRT-600 content, but please register or login to continue.