What is Java Script ?
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>
What is Java Script