Data Types JavaScript
Data Types JavaScript
Data Types
Data Types
Strings
As strings must be written within
quotes, quotes inside
thestringmust be handled.
Thebackslash (\) escape
character turns special
characters intostringcharacters.
Data Types
Strings
Data Types
Strings
Data Types
The escape character (\) can
also be used to insert other
special characters into a string.
These special characters can
be added to a text string using
the backslash sign.
Data Types
Data Types
Data Types
Booleans
In JavaScript Boolean, you can have
one of two values,
eithertrueorfalse.
These are useful when you need a data
type that can only have one of two
values, such as Yes/No, On/Off,
True/False.
Data Types
Booleans
Data Types
Booleans
The Boolean value of 0
(zero),null,undefined,
emptystringisfalse.
Everything with a "real"
value istrue.
Math Operators
Arithmetic Operators
Arithmetic operators
perform arithmetic
functions on numbers
(literals or variables).
Arithmetic Operators
Arithmetic Operators
Arithmetic Operators
Multiplication
Division
The Modulus
Homework