Edit This Code:
<!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:
Try it Yourself - © w3schools.com
Privacy Policy