Json Object Getter Test

Creating json object: { banana: 'yellow', apple: true, orange: 1, time: new Date() } and calling all the getter methods.


    Json Object Setter Test

    Updating json object to: { banana: 'fruit', apple: false, orange: 666, time: new Date() } and calling all the getter methods.


      Json Array Getter Test

      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}.


        Json Array Setter Test

        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}.


          xJson Array Getter Test

          Creating xjson array to: { scheme: ['id', 'name'], set: [ [1, 'test1'], [2, 'test2'], [3, 'test3'], [4, 'test4'], ]; } and calling get(n) where n = {0, 3}.


            Complex xJson Array Test

            Creating xjson array to: { scheme: ['id', 'name'], set: [ [1, 'test1'], [2, 'test2'], [3, 'test3'], [4, 'test4'], ]; } and calling get(n) where n = {0, 3}.