Programming Code Center(PCC)
[JS]

(PCC)::[How-JavaScript-code-is-a-sequence-of-statements]::[js]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

<h2>JavaScript Statements</h2>

<p>A <b>JavaScript program</b> is a list of <b>statements</b> to be executed by a computer.</p>

<p id="demo"></p>

<script>
var x, y, z;  // Statement 1
x = 5;    // Statement 2
y = 6;    // Statement 3
z = x + y;  // Statement 4

document.getElementById("demo").innerHTML =
"The value of z is " + z + ".";  
</script>

</body>
</html>

Output :

JavaScript Statements

A JavaScript program is a list of statements to be executed by a computer.