Breaking News

How to Run your First Code in JavaScript



1 - Open Notepad++ and write:

<html>
<body>
<h1 id="testID"> </h1> 
<script>
document.getElementById("testID").innerHTML = "Congratulations, you wrote your first code in JavaScript";
</script>
</body>
</html>

2 - Save as "IDEATest.html"
3 - Double the file and Congrats, you did it

Full Video:

No comments