+ 3
Can anyone help me?
Why the output of this code is: error var value = 0; If (value){ return true;} else{ return false;}
1 ответ
+ 3
`return` statement should only be used inside a function's body. Use of `return` statement outside function body will trigger error.