-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConversionOprations.js
52 lines (29 loc) · 961 Bytes
/
ConversionOprations.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
// // let score = "44abc";
// // console.log(typeof score)
// // console.log(typeof (score))
// // let valueInNumber = Number(score)
// // console.log(valueInNumber)
// // // 33 => 33
// // // "444abc" => NaN
// // // true => 1; false => 0
// // // let isLoggedIn = 1; => ture
// // // let isLoggedIn = "" => false
// // let isLoggedIn = "adnan";
// // let booleanLoggedIn = Boolean(isLoggedIn)
// // console.log(booleanLoggedIn)
// // // ****************************Oprations*******************************
// // let x = 3;
// // const y = x++;
// // console.log(`x:${x}, y:${y}`);
// // let a = 3;
// // const b = ++a;
// // console.log(`a:${a}, b:${b}`);
// const score = 100;
// const scoreValue = 10.5;
// const isLoggedIn = false
// const outSideTemp = null;
// const id = Symbol('123')
// const anotherId = Symbol('123')
// console.log(id === anotherId);
const bigNumber = 247238942389423894n;
console.log(typeof bigNumber);