I have 2 arrays of objects in JavaScript. Both Arrays contain a similar property called car_id in their objects. How can I remove the objects in array 1 with a similar car id value as objects in array 2. In the example below, I should get {car_id: 3, make: "Chevy", model: "Tahoe", year: 2003} as the final value.
var cars1 = [
{car_id: 1, make: "Honda", model: "Civic", year: 2001, driver: "John"},
{car_id: 2, make: "Ford", model: "F150", year: 2002, driver: "Max"},
{car_id: 3, make: "Chevy", model: "Tahoe", year: 2003, driver: "Jane"},
];
var cars2 = [
{car_id: 1, make: "Honda", color: "red", engine_no: "AB567"},
{car_id: 2, make: "Ford", color: "blue", engine_no: "AB568"},
{car_id: 6, make: "Toyota", color: "green", engine_no: "AB569"},
];