-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatatypesSummary.js
80 lines (70 loc) · 1.7 KB
/
datatypesSummary.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//-------Primitive(call by value)-------
//7 types:
// (1) String
// (2) Number
// (3) Boolean
// (4) null
// (5) undefined
// (6) Symbol
// (7) BigInt
//------examples:--------
// const score=100
// const scoreValue=100.3
// const isLoggedIn=false
// const outsideTemp=null
// let userEmail;
// const id=Symbol('123')
// const anotherId=Symbol('123')
// console.log(id===anotherId);
// const bigNumber=1234235346435546456457n
//---------Reference(Non-primitive)(call by reference)--------
// (1) Arrays (return object)
// (2) Objects (return object)
// (3) Functions (return function-object)
const heros=["shaktiman","naagraj","doga"]
let myObj={
name:"Sanjh",
age:22,
}
let myFunction=function(){
console.log("Hello world");
}
console.log(typeof myFunction);
//---------------Read-more-------------
//https://262.ecma-international.org/5.1/#sec-11.4.3
//-----------datatype-return-type=>----------
// undefined=>undefined
// null=>Object
// boolean=>boolean
// Number=>Number
// string=>string
// object=>object
// function=>function-object
// Array=object
//*******************************Memory******************************/
/**
* 2 types memory-allocation
* (1)-Stack(Primitve)->give copy of original value
* (2)-Heap(non-Primitive)->give reference of original value
*
*
* example:-
* let myYoutube="SanjhOk33.com"
* let anothername=myYoutubename
* anothername="chaiaurcode"
*
* console.log(myYoutubename); //not change value
* console.log(anothername); //change value of copy variables
*
* let userOne={
* email:"[email protected]",
* upi:"user@ybl"
* }
*
* let userTwo=userOne
* userTwo.email="[email protected]"
*
* console.log(userOne.email);
* console.log(userTwo.email);
*
*/