I'm looking for a way, how remove array items with compare of other array.
keys = ['201','300'];
obj[0]=['someval','somename','201'];
obj[1]=['someval','somename','241'];
obj[2]=['someval','somename','300'];
obj[3]=['someval','somename','230'];
Now, how can i have obj array with elements equal to keys array ? I want to archive this:
obj[0]=['someval','somename','201'];
obj[1]=['someval','somename','300'];
Thank You for help.