0% found this document useful (0 votes)
60 views

Backend Web Dev With Node and Express Notes

The original browser was once the dominant browser in terms of usage share, but as a result of the first browser war, it lost virtually all of its share to Internet Explorer. Netscape was discontinued and support for all Netscape browsers and client products was terminated on March 1, 2008.

Uploaded by

Rupam Karmakar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
60 views

Backend Web Dev With Node and Express Notes

The original browser was once the dominant browser in terms of usage share, but as a result of the first browser war, it lost virtually all of its share to Internet Explorer. Netscape was discontinued and support for all Netscape browsers and client products was terminated on March 1, 2008.

Uploaded by

Rupam Karmakar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 41

The original browser was once the

dominant browser in terms of usage


share, but as a result of the first
browser war, it lost virtually all of its
share to Internet Explorer.
Netscapewas discontinued and
support for all Netscape browsers
and client products was terminated
on March 1, 2008.

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

Retrieving Data Searching on Page

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

You might also like