Add your Comment
You might have come across term Javascript. It has nothing to do with programming language Java!. Javascript is mainly used at web-pages as scripting languages.
But what is a scripting language ?
Scripting languages are nothing but languages that support scripts.
Wondering about scripts ?
Scripts are commands that are written for an execution engine or an environment.
An Example to show alert in Js is shown below :
1 2 3 |
<script type="text/javascript"> alert('Hello'); </script> |
SEE ALL
YOU