top of page
JavaScript keywords are used to identify actions to be performed.
The var keyword tells the browser to create a new variable:
<!DOCTYPE html>
<html>
<body>
<h1>The var Keyword Creates a Variable</h1>
<p id="demo"></p>
<script>
var x = 5 + 6;
var y = x * 10;
document.getElementById("demo").innerHTML = y;
</script>
</body>
</html>
Javascript Datatype
Action to Be Performed
Our clients are our partners, that’s why we choose them carefully:
bottom of page