Which three statements are true about promises ? Choose 3 answers
A. The executor of a new Promise runs automatically.
B. A Promise has a .then() method.
C. A fulfilled or rejected promise will not change states .
D. A settled promise can become resolved.
E. A pending promise can become fulfilled, settled, or rejected.
Developer wants to use a module named universalContainersLiband them call functions from it.
How should a developer import every function from the module and then call the functions foo and bar ?
A. import * ad lib from `/path/universalContainersLib.js'; lib.foo(); lib.bar();
B. import (foo, bar) from `/path/universalContainersLib.js'; foo(); bar();
C. import all from `/path/universalContaineraLib.js'; universalContainersLib.foo(); universalContainersLib.bar();
D. import * from `/path/universalContaineraLib.js'; universalContainersLib.foo(); universalContainersLib.bar();
Which statement phrases successfully?
A. JSON.parse ( ` foo ' );
B. JSON.parse ( " foo " );
C. JSON.parse( " ` foo ' " );
D. JSON.parse(` " foo " ');
Given the JavaScript below:
Which code should replace the placeholder comment on line 05 to highlight accounts that match the search string'
A. 'yellow' : null
B. null : 'yellow'
C. 'none1 : "yellow'
D. 'yellow : 'none'
Refer to the code below:
const addBy = ?
const addByEight =addBy(8);
const sum = addBYEight(50);
Which two functions can replace line 01 and return 58 to sum?
Choose 2 answers
A. const addBy = function(num1){ return function(num2){ return num1 + num2; }
B. const addBy = function(num1){ return num1 + num2; }
C. const addBy = (num1) => num1 + num2 ;
D. const addBY = (num1) => (num2) => num1 + num2;
A class was written to represent items for purchase in an online store, and a second class Representing items that are on sale at a discounted price. THe constructor sets the name to the first value passed in. The pseudocode is below:
Class Item {
constructor(name, price) {
... // Constructor Implementation
}
}
Class SaleItem extends Item {
constructor (name, price, discount) {
...//Constructor Implementation
}
}
There is a new requirement for a developer to implement a description method that will return a brief description for Item and SaleItem.
Let regItem =new Item(`Scarf', 55);
LetsaleItem = new SaleItem(`Shirt' 80, -1);
Item.prototype.description = function () { return `This is a ' + this.name;
console.log(regItem.description());
console.log(saleItem.description());
SaleItem.prototype.description = function () { return `This is adiscounted ' + this.name; }
console.log(regItem.description());
console.log(saleItem.description());
What is the output when executing the code above ?
A. This is a Scarf Uncaught TypeError: saleItem.description is not a function This is aScarf This is a discounted Shirt
B. This is a Scarf This is a Shirt This is a Scarf This is a discounted Shirt
C. This is a Scarf This is a Shirt This is a discounted Scarf This is a discounted Shirt
D. This is aScarf Uncaught TypeError: saleItem.description is not afunction This is a Shirt This is a did counted Shirt
Given the following code:
is the output of line 02?
A. ''x''
B. ''null'''
C. ''object''
D. ''undefined''
Refer tothe 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
A. // FooUtils.js and BarUtils.js exist Import (foo) from `/path/FooUtils.js'; Import (boo) from ` /path/NarUtils.js';
B. const foo = () => { return `foo' ; } const bar = () => { return `bar' ; } export { bar, foo }
C. Export default class { foo() { return `foo' ; } bar() { return`bar' ; } }
D. const foo = () => { return `foo';} const bar = () => {return `bar'; } Export default foo, bar;
Given HTML below:
Which statement adds the priority = account CSS class to the universal Containers row?
A. Document .querySelector(`#row-uc').classes.push(`priority-account');
B. Document .queryElementById(`row-uc').addclass(`priority-account');
C. Document .querySelector(`#row-uc').classList.add(`priority-account');
D. Document .querySelectorALL(`#row-uc').classList.add(`priority-account');
myArraym canhave one level, two levels, or more levels. Which statement flattens myArray when it can be arbitrarily nested?
A. myArray. reduce ((prev, curr) => prev.concat(curr) [ ]);
B. myArray. join (","). split (",");
C. [ ] .concat {. . .myArray) ;
D. myArray.flat(Infinity);
Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Salesforce exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your JAVASCRIPT-DEVELOPER-I exam preparations and Salesforce certification application, do not hesitate to visit our Vcedump.com to find your solutions here.