-
Notifications
You must be signed in to change notification settings - Fork 0
/
08_Module(Export).js
40 lines (31 loc) · 1.29 KB
/
08_Module(Export).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
/*
Description:
Module Export
Modifications:
---------------------------------------------------------------------------------------
Date Vers. Comment Name
---------------------------------------------------------------------------------------
07.11.23 01.00 Created Siddiqui
---------------------------------------------------------------------------------------
*/
// ==========================================================================================================
// Link
// ==========================================================================================================
// - https://javascript.info/import-export
// - https://javascript.info/modules-dynamic-imports
// ==========================================================================================================
// Module Export
// ==========================================================================================================
// Constant
const PI = 3.14
// Function
const func = () => { console.log("Hello World"); }
// Class
class Cls {
constructor(a, b) { this.a = a; this.b = b; }
getter = () => {
let get = { a: this.a, b: this.b };
console.log(get); return get;
}
}
export { PI, Cls, func }