Backend Web Dev With Node and Express Notes
Backend Web Dev With Node and Express Notes
02
Components of
a web site
What will be be learning
03
04
05
06
What's the use of JS
07
NETSCAPE
NAVIGATOR
08
in 1995
T E R S
S I E
EB R V
W S E
09
Problems Faced
Unit Conversion
10
Brendan
Eich
Created javascript in
10 days
11
Javascript
OFF
12
LiveScript
JScript
ECMA Script
13
Vs
Javascript
14
Naming
Conventions
The first character must be a The rest of the variable name As with the rest of JavaScript, You can't use one of
letter or an underscore (_). You can include any letter, any variable names are case JavaScript's reserved words as
can't use a number as the first number, or the underscore. You sensitive. a variable name.
character. can't use any other characters,
including spaces, symbols, and
punctuation marks.
14
Message
alert("hello");
Function
End
16
alert("hello");
alert ( "hello" ) ;
alert('hello');
STRING
alert("hello");
20
STRING
"hello"
21
Numbers
247
22
Boolean
true false
23
"hello" + " " + "world"
"hello world"
24
"hello" + " world"
"hello world"
25
Comments
// /* ---*/
26
String
Methods
12
Length
string.length;
26
Slice
string.slice(0,1);
26
Capital and Small Letters
string.toUpperCase();
string.toLowerCase();
26
Numbers
Arithmetic
12
Basics
BODMAS
26
Increment
a=a+1
a++
26
Decrement
a=a-1
a--
26
Extras
a=a+4 a=a-4 a=a/4
a+=4 a-=4 a/=4
a=a*4
a*=4 26
Back-End
Webdev
12
Server Application Database
26
Client Server DataBase
Side
26
API's
Webdev
12
EndPoint
Paths
Parameters
Authentication
26
JS
HTML
JS
27
28