Curriculum
Course: JavaScript Basic
Login

Curriculum

JavaScript Basic

JSHome

0/216
Text lesson

JS Statements

Example

let x, y, z;    // Statement 1
x = 5;          // Statement 2
y = 6;          // Statement 3
z = x + y;      // Statement 4

JavaScript Programs

A computer program consists of a sequence of “instructions” executed by the computer. In programming languages, these instructions are called statements, so a JavaScript program is made up of a series of statements.

Within HTML, web browsers execute JavaScript programs.