Creating json object: { banana: 'yellow', apple: true, orange: 1, time: new Date() } and calling all the getter methods.
Updating json object to: { banana: 'fruit', apple: false, orange: 666, time: new Date() } and calling all the getter methods.
Creating json array: [ {id: 1, name: 'test1'}, {id: 2, name: 'test2'}, {id: 3, name: 'test3'}, {id: 4, name: 'test4'} ] and calling get(n) where n = {0, 3}.
Updating json array to: [ {id: 5, name: 'test5'}, {id: 6, name: 'test6'}, {id: 7, name: 'test7'}, {id: 8, name: 'test8'} ] and calling get(n) where n = {0, 3}.
Creating xjson array to: { scheme: ['id', 'name'], set: [ [1, 'test1'], [2, 'test2'], [3, 'test3'], [4, 'test4'], ]; } and calling get(n) where n = {0, 3}.
Creating xjson array to: { scheme: ['id', 'name'], set: [ [1, 'test1'], [2, 'test2'], [3, 'test3'], [4, 'test4'], ]; } and calling get(n) where n = {0, 3}.