What is rong with is code help me """""""""

Tell us what’s happening:

Your code so far


function TimesFive(num) {
return num *5;
}
console.log(TimesFive(5));
console.log(TimesFive(2));
console.log(TimesFive(0));

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-A105F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Mobile Safari/537.36.

Challenge: Return a Value from a Function with Return

Link to the challenge:

Check the case of the function name.

TimesFive !== timesFive

1 Like