├── .gitignore ├── array.html ├── base64.html ├── bigint.html ├── boolean.html ├── date.html ├── encode.html ├── eval.html ├── json.html ├── map.html ├── math.html ├── number.html ├── object.html ├── proxy.html ├── reflect.html ├── regexp.html ├── sample.json ├── set.html ├── string.html └── symbol.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /array.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Array 6 | 7 | 8 | 9 | 103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /base64.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Base64 6 | 7 | 8 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /bigint.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BigInt 6 | 7 | 8 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /boolean.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Boolean 6 | 7 | 8 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /date.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Date 6 | 7 | 8 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /encode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Encode 6 | 7 | 8 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /eval.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Eval 6 | 7 | 8 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /json.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JSON 6 | 7 | 8 | 9 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /map.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Map 6 | 7 | 8 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /math.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Math 6 | 7 | 8 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /number.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Number 6 | 7 | 8 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /object.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Object 6 | 7 | 8 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /proxy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Proxy 6 | 7 | 8 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /reflect.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Reflect 6 | 7 | 8 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /regexp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | RegExp 6 | 7 | 8 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /sample.json: -------------------------------------------------------------------------------- 1 | { 2 | "firstName": "Eko", 3 | "middleName": "Kurniawan", 4 | "lastName": "Khannedy", 5 | "address": { 6 | "country": "Indonesia", 7 | "city": "Subang" 8 | }, 9 | "hobbies": [ 10 | "Coding", 11 | "Game", 12 | "Traveling" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /set.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Set 6 | 7 | 8 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /string.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | String 6 | 7 | 8 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /symbol.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Symbol 6 | 7 | 8 | 37 | 38 | 39 | --------------------------------------------------------------------------------