-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02.js
More file actions
27 lines (23 loc) · 654 Bytes
/
02.js
File metadata and controls
27 lines (23 loc) · 654 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
let fullName = "Cyber24BD";
let basicRoll = 35;
let bigReg = 65456416548946684479865n;
let mainBoo = true;
let x;
let y = null;
let exSym = Symbol("Cyber");
let exSym2 = Symbol("Cyber");
let ex1 = "Cyber";
let ex2 = "Cyber";
let final = `This is ${fullName} , Current Roll ${basicRoll}, Basic Reg ${bigReg}`;
// let final2 = "This is ${fullName} , Current Suscriber ${100+25}"
// x = "I am Here"
console.log(exSym === exSym2)
console.log(ex1 === ex2)
console.log(final)
// console.log(final2)
console.log(typeof fullName)
console.log(typeof basicRoll)
console.log(typeof bigReg)
console.log(typeof mainBoo)
console.log(typeof x)
console.log(typeof y)