Question 76
Which two console logs outputs NaN ?
Choose 2 answers
Question 77
Whichthree actions can be using the JavaScript browser console?
Choose 3 answers:
Question 78
There is a new requirement for a developer to implement a currPrice method that will return the current price of the item or sales..
What is the output when executing the code above
Question 79
Given two expressions, exp1 and exp2, which two valid ways return the logical AND of the two expressions and ensure it is a Boolean?
Question 80
Refer to the code below:
const searchText = 'Yay! Salesforce is amazing!';
let result1 = searchText.search(/sales/i);
let result2 = searchText.search(/sales/);
console.log(result1);
console.log(result2);
After running this code, which result is displayed on the console?
