Assignment004J

JavaScript Concatination +

For this assignment create code to join quotes and variables.
To do so, you will need to use the concatination + symbol.

<script>

myNumber = 16;
numberSixteen = "What's my favorite Number ";

window.alert(numberSixteen + "???");

window.alert("I don't know!");

window.alert(myNumber);

</script>