How to write into the HTML output (the document) with JavaScript

1 Answer

0 votes
<script>
document.write("abc" + "<br />");
document.write(13 + 1);

/*
run:

abc
14 

*/
</script>

 



answered Aug 29, 2016 by avibootz

Related questions

...