How to find differences between two arrays which have arrays nested inside? I tried different approaches including filter but not succeeded. We have two arrays:
var arr1 = [ [1, 1], [1, 2], [1, 3], [1, 4], [1, 5], [1, 6]];
var arr2 = [ [1, 1], [1, 2], [1, 5]];
All I need is to get an array with elements which do not exist in the first array as a result: [[1, 3], [1, 4], [1, 6]]