Сортировать JSON в порядке убывания

const data = [
    {id: 1, name: "Bob", email: "example@email.com"},
    {id: 2, name: "Tom", email: "example@email.com"},
    {id: 3, name: "Cat", email: "example@email.com"},
    {id: 4, name: "Mat", email: "example@email.com"},
	{id: 5, name: "Tim", email: "example@email.com"},
];

let sortedData = data.slice().sort((a, b) => b.id - a.id);
console.log(sortedData);
Cautious Capybara