0
What is wrong in my js function ?
function add(A,B) { var C =A+B; return C; document.write(c); } ab || c ||?
1 Respuesta
+ 3
JS is case-sensitive, c is different from C. Line 6 is unnecessary, as it won't be executed after the function return.
function add(A,B) { var C =A+B; return C; document.write(c); } ab || c ||?