Javascript Variables Tutorial
Variables
/*
variable is temporary place to store values.
variables are defines using keyword var
variable values can be used by calling the name of variable
*/
var myname = "Shahid"
document.write(myname)
<script type="text/javascript">
/*
variable is temporary place to store values.
variables are defines using keyword var
variable values can be used by calling the name of variable
*/
var myname = "Shahid"
document.write(myname)
</script>

