Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
>
When adding a number and a string, JavaScript will treat the number as a string.
<
/p
>
<
p
id
="demo"
>
<
/p
>
<
script
>
var
x =
16
+
"Volvo"
;
document.getElementById(
"demo"
).innerHTML = x;
<
/script
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p>When adding a number and a string, JavaScript will treat the number as a string.</p> <p id="demo"></p> <script> var x = 16 + "Volvo"; document.getElementById("demo").innerHTML = x; </script> </body> </html>
Result:
Privacy Policy