List of questions
Related questions
Question 130 - Certified JavaScript Developer I discussion
Refer to the following code that performs a basic mathematical operation on a provided input:
function calculate(num) {
Return (num +10) / 3;
}
How should line 02 be written to ensure that x evaluates to 6 in the line below?
Let x = calculate (8);
A.
Return Number((num +10) /3 );
B.
Return (Number (num +10 ) / 3;
C.
Return Integer(num +10) /3;
D.
Return Number(num + 10) / 3;
Your answer:
0 comments
Sorted by
Leave a comment first