“JavaScript is a versatile, high-level programming language that is commonly used to create interactive effects within web browsers. ”
Variables are used to store data values. In JavaScript, you can declare a variable using var
, let
, or const
.
var name = 'John';
let age = 25;
const isStudent = true;
JavaScript supports various data types, including:
"Hello, world!"
42
true
or false
{ name: 'John', age: 25 }
[1, 2, 3, 4, 5]
JavaScript includes various operators:
+
, ,
, /
, %
=
, +=
, =
, =
, /=
==
, ===
, !=
, !==
, >
, <
, >=
, <=
&&
, ||
, !