- 5
Hey guy am new in python
it not printing the result as expected
3 Réponses
+ 2
If you are referring to this code: https://code.sololearn.com/WGYLtYVpA7f8
the issue was with the return statement. it was missing its parenthesis. I believe this code example below solves your issue.
function answer(a, b) {
return (a * b);
}
var x = answer(5, 6);
document.write(x);
+ 2
Check this post bro:
https://www.sololearn.com/discuss/333866/?ref=app
0
I can't see the code 👀