Refer to HTML below:
The current status of an Order: In Progress
.
Correct Answer:
C
Refer to the code:
Given the code above, which three properties are set pet1? Choose 3answers:
Correct Answer:
BCE
A developer wrote a fizzbuzz function that when passed in a number, returns the following:
‘Fizz’ if the number is divisible by 3. ‘Buzz’ if the number is divisible by 5.
‘Fizzbuzz’ if the number is divisible by both 3 and 5. Emptystring if the number is divisible by neither 3 or 5.
Which two test cases will properly test scenarios for the fizzbuzz function? Choose 2 answers
Correct Answer:
BCD
Refer to the code below:
Let foodMenu1 =[‘pizza’, ‘burger’, ‘French fries’]; Let finalMenu = foodMenu1; finalMenu.push(‘Garlic bread’);
What is the value of foodMenu1 after the code executes?
Correct Answer:
B
Which two console logs output NaN? Choose 2 answers | |
Correct Answer:
BD