Numbers Task 6
by fredericklim
HTML
<!DOCTYPE html>
<html>
<body>
<p id="output"></p>
<script>
"use strict";
let vStr = `This is a line 1\n this is line 2\n this is line 3`;
console.log(vStr);
document.querySelector("#output").innerHTML = vStr;
</script>
</body>
</html>