-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.js
52 lines (44 loc) · 1.01 KB
/
global.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
function glUser(name){
this.name = name;
}
glUser.prototype.hello = function(who){
console.log("Hello, " + who.name);
};
global.glUser = glUser;
let GLBL = [
{id: 3, title:"first"},
{id: 1, title:"second"},
{id: 2, title:"third"},
];
let GLBL2 = [
{id: 3, title:"first"},
{id: 1, title:"second"},
{id: 2, title:"third"},
];
let GLBL3 = [
{id: 3, title:"first"},
{id: 1, title:"second"},
{id: 2, title:"third "},
];
global.GLBL = GLBL;
global.GLBL2 = GLBL2;
global.GLBL3 = GLBL3;
let glblNumbers = [4, 5, 6, 7, 1, 2, 3, 8, 9];
global.glblNumbers = glblNumbers;
let glblArr = [
{a:"a",b:"a",c:"a"},
{a:"b",b:"a",c:"b"},
{a:"b",b:"a",c:"a"},
{a:"b",b:"a",c:"b"},
{a:"b",b:"b",c:"a"},
{a:"b",b:"b",c:"b"},
{a:"b",b:"b",c:"a"},
{a:"b",b:"b",c:"b"},
{a:"b",b:"b",c:"a"},
{a:"b",b:"b",c:"b"},
{a:"b",b:"b",c:"a"},
{a:"c",b:"b",c:"b"},
{a:"c",b:"c",c:"a"}
];
global.glblArr = glblArr;
// console.log("\nКонтекст из data/global.js\n");