l = [[1, 2], [2, 3], [3, 4]]
console.log(l.includes([2, 3]))
Why does this return false? And how can i check if a list is in a list of list?
l = [[1, 2], [2, 3], [3, 4]]
console.log(l.includes([2, 3]))
Why does this return false? And how can i check if a list is in a list of list?