I am trying to solve this challenge of the topic : Return a Value from a function with Return,
i think the functions , variables and returns are well written but sadly i continue having
problems in this challenge, i attach the picture of my code below,
i will appreciate if i can get some support or orientation about it.
Thank you all in advance,
Kind regards,
Ivonne
// Example
function minusSeven(num) {
return num - 7;
}
// Only change code below this line
function timesFive(num){
return num*5;
}
var answer=timesFive(5);
function timesFive(num){
return num*2;
}
var answer=timesFive(2);
function timesFive(num){
return num*0;
}
var answer = timesFive(0);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36.