I am working with javascript arrays, where i have an array of arrays like,
var arr = [ [ 73.0191641, 33.5720131 ], [ 73.0191641, 33.5720131 ], [ 3.0191641, 33.5720131 ], [ 73.0191641, 33.5720131 ], [ 73.0191641, 33.5720131 ], [ 73.0192222, 33.5778921 ], [ 73.0192222, 33.5778921 ]]; There, i needed to remove the duplicate arrays. I have tried this method but it didn't worked for me, may be i am missing or doing something wrong.
var distinctArr = Array.from(new Set(arr)); Although this method works only for array of objects. If someone can help, please do help. Thanks for your time.