1 { 2 pos: { 3 x: 1, 4 y: "2", 5 z: 3, 6 test1: 3, 7 test2: Green, 8 test3: { 9 a: 5, 10 b: 6 11 } 12 }, 13 hp: 80, 14 name: "MyMonster", 15 inventory: [ 16 0, 17 1, 18 2, 19 3, 20 4 21 ], 22 test_type: Monster, 23 test: { 24 name: "Fred", 25 pos: null 26 }, 27 test4: [ 28 { 29 a: 10, 30 b: 20 31 }, 32 { 33 b: "40", 34 a: 30 35 } 36 ], 37 testarrayofstring: [ 38 "test1", 39 "test2" 40 ], 41 enemy: { 42 name: "Fred" 43 }, 44 testarrayofbools:[ 45 true, false, true 46 ], 47 testhashs32_fnv1: "This string is being hashed!", 48 testhashu32_fnv1: "This string is being hashed!", 49 testhashs64_fnv1: "This string is being hashed!", 50 testhashu64_fnv1: "This string is being hashed!", 51 testhashs32_fnv1a: "This string is being hashed!", 52 testhashu32_fnv1a: "This string is being hashed!", 53 testhashs64_fnv1a: "This string is being hashed!", 54 testhashu64_fnv1a: "This string is being hashed!", 55 } 56