Array Testing

Array Filters
- Arrays can be tested using array filters.
- The following filter operations are supported:
*, =, !=, <=, <, >=, >, *=, ^=, $=. *=filters usingcontainsoperation^=filters usingstartsWithoperation$=filters usingendsWithoperation- To access array items from the end, use a negative index:
json.items[-2].id.
Last updated on