Question 41
Which function should a developer use to repeatedly execute code at a fixed interval ?
Question 42
A developer creates a generic function to log custom messages In the console. To do this, the function below is implemented.

Which three console logging methods allow the use of string substitution in line 02?
Choose 3 answers

Which three console logging methods allow the use of string substitution in line 02?
Choose 3 answers
Question 43
Refer to the code below:
Const searchTest = 'Yay! Salesforce is amazing!" ;
Let result1 = searchText.search(/sales/i);
Let result 21 = searchText.search(/sales/i);
console.log(result1);
console.log(result2);
After running this code, which result is displayed on the console?
Const searchTest = 'Yay! Salesforce is amazing!" ;
Let result1 = searchText.search(/sales/i);
Let result 21 = searchText.search(/sales/i);
console.log(result1);
console.log(result2);
After running this code, which result is displayed on the console?
Question 44
Refer to the code below:
Let textValue = '1984';
Which code assignment shows a correct way to convert this string to an integer?
Let textValue = '1984';
Which code assignment shows a correct way to convert this string to an integer?
Question 45
Teams at Universal Containers (UC) work on multiple JavaScript projects at the same time.
UC is thinking about reusability and how each team can benefit from the work of others.
Going open-source or public is not an option at this time.
Which option is available to UC with npm?
UC is thinking about reusability and how each team can benefit from the work of others.
Going open-source or public is not an option at this time.
Which option is available to UC with npm?
