Salesforce Certified JavaScript Developer I Practice Test - Questions Answers, Page 20

List of questions
Question 191

A developer is leading the creation of a new web server for their team that will fulfill API requests from an existing client.
The team wants a web server that runs on Node.Js, and they want to use the new web framework Minimalist.Js. The lead developer wants to advocate for a more seasoned back-end framework that already has a community around it.
Which two frameworks could the lead developer advocate for?
Choose 2 answers
Question 192

Refer to the string below: const str = 'Salesforce'; Which two statements result in the word 'Sales'?
Choose 2 answers
Question 193

Given the JavaScript below:
Which code should replace the placeholder comment on line 05 to highlight accounts that match the search string'
Question 194

Refer to the following code:
Which two statement could be inserted at line 17 to enable the function call on line 18?
Choose 2 answers
Question 195

Which code change should be done for the console to log the following when 'Click me!' is clicked'
> Row log
> Table log
Question 196

A developer has an ErrorHandler module that contains multiple functions.
What kind of export should be leveraged so that multiple functions can be used?
Question 197

Refer to the code:
Given the code above, which three properties are set for pet1? Choose 3 answers
Question 198

Refer the following code
what is the value of array after code executes?
Question 199

Refer the code below.
x=3.14;
function myfunction() {
"use strict";
y=x;
}
z=x;
myFunction();
Question 200

Refer to the string below.
Const str='Salesforce';
Which two statements results in the word 'Sales'?
Question