Java Script

What is Java Script ?

Spread the love

Java Script (JS) is a scripting or programming language.

Java Script (JS) is used to dynamically updating content, animate images, calculation etc… for web page.

A simple Java Script example –

<!DOCTYPE html>
<html>
<body>
<h1> JavaScript Example </h1>
<p id="pId"></p>
<script>
document.getElementById("pId").innerHTML = 'Ashok M.';
</script>
</body>
</html>

Click here to more…

What is Java Script

Leave a Reply

Your email address will not be published. Required fields are marked *