-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript.txt
More file actions
34 lines (18 loc) · 865 Bytes
/
Copy pathjavascript.txt
File metadata and controls
34 lines (18 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Interpretor vs compiler - compiler checks once the sytax for the program if we add any new line then only that line would be compiled (check for sytax)
Every browser has a interpreter which will check the sytax for each line.
Java is interpreted by the browser. But brower has different engine.
Compiler for javascript is NodeJS. Before NodeJS
MEAN - MongoDB Express Angular Node
Servers
1. OS
Client SErver
Server
2. WebServices
Apache Tomcat
3. Database Server
Value Type and Reference type
Value Type /Primitive types is stored in STack and reference type is stored in heap.
var a=5, here var will have the data type as per the value in variable a hence we did not have to specify the data type
reference and primitive in Stack and object in heap.
Object obj = new Object();
here object is store in heap and obj(its reference ) is stored in stack