Json – Finding if each element of array 1 exists in array 2
I have 2 json files: a_names.json and b_names.json. File a: { "Names": ["a","b","c"] } File b: { "Names": ["b","c"] } What i tried to do was (say i have a loop with counter ascending from 0): a_names.Names | contains([b_names.Names[.counter]]) And…