-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (31 loc) · 1.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Playground Chrome Dev Tools</title>
<script src="./lib/javascript-prototypes.js"></script>
<script>
let arr1 = ["a", "b", "c", "d", 1, 2, 3, 4];
let arr2 = ["c", "d", 3];
let numarray1 = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 100, 200, 300];
let numarray2 = [5, 66, 22, 33, 44, 7, 88, 99, 10, 11, 2000];
let obj1 = { a: 1, b: 2, c: 3, d: "key4" };
let obj2 = { a: "something from obj2 with key2", b: "key4", e:3, f:4, g:5 };
let json1 = [
{ id: 12345, key2: "key2 json1 obj 1", key3: { a: 1, b: 2, c: 3 } },
{ id: 23456, key2: "key2 json1 obj 2" b:2,c:3,d:4,e:5},
];
let json2 = [
{ key1: 12345, key2: "key2 json2 obj 1" },
{ key1: 23456, key2: [1, ["a", "b", "c"], 2, 3, 4, 5, 6] },
];
let str1 = "asdf1";
let str2 = "asdf2";
let a = new Zray(...numarray1);
let b = new Zray(...numarray2);
let o = new Zob({});
</script>
<!-- <script src="./scratchpad.js"></script> -->
</head>
<body></body>
</html>