Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
>
If you use NaN in a mathematical operation, the result can be a concatination:
<
/p
>
<
p
id
="demo"
>
<
/p
>
<
script
>
var
x = NaN;
var
y =
"5"
;
document.getElementById(
"demo"
).innerHTML = x + y;
<
/script
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p>If you use NaN in a mathematical operation, the result can be a concatination:</p> <p id="demo"></p> <script> var x = NaN; var y = "5"; document.getElementById("demo").innerHTML = x + y; </script> </body> </html>
Result:
Privacy Policy