I tried to use Array.includes but this code returns false:
var list = [[0, 0], [0, 1]]
list.includes([0, 0])
Does anyone know what I can use instead?
I tried to use Array.includes but this code returns false:
var list = [[0, 0], [0, 1]]
list.includes([0, 0])
Does anyone know what I can use instead?