Instead of assigning variable for this.id, does anyone know the syntax of how would I pass this.id into findIndex function?
listing.slideUp(500, function() {
var listing_id = this.id;
// I'd like it to say car[0].id == this.id ?
var index = cars.findIndex(function(car) { return car[0].id === listing_id });
if (index > -1) {
cars.splice(index, 1);
}
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…