let answer = []; let arrA = [[1, 4], [3, 4], [3, 10]] let arrB = [[ 1, 4 ], [1, 10], [ 3, 4], [3, 10]]
the results of arrA.indexOf(arrB [i]) == -1
turn out to be false for all.
How can I solve it?
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
let answer = []; let arrA = [[1, 4], [3, 4], [3, 10]] let arrB = [[ 1, 4 ], [1, 10], [ 3, 4], [3, 10]]
the results of arrA.indexOf(arrB [i]) == -1
turn out to be false for all.
How can I solve it?