-
Notifications
You must be signed in to change notification settings - Fork 0
/
sortProducts.js
82 lines (74 loc) · 1.49 KB
/
sortProducts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
You're online shopping for holiday gifts, but money is tight
so we need to look at the cheapest items first.
Use the built in sort() method to write a function that returns a new array of
products sorted by price, cheapest to most expensive.
Then log the item and the price to the console:
💕,0
🍬,0.89
🍫,0.99
🧁,0.99
📚,0.99
... continued
*/
const shoppingList = [
{
product: "🍭",
price: 2.99,
},
{
product: "🍫",
price: .99,
},
{
product: "🏡",
price: 40000000
},
{
product: "🧁",
price: .99,
},
{
product: "📚",
price: .99,
},
{
product: "⏰",
price: 13.99,
},
{
product: "🍬",
price: .89,
},
{
product: "🥎",
price: 3.99,
},
{
product: "🎸",
price: 13.99,
},
{
product: "🎨",
price: 23.99,
},
{
product: "💕",
price: 0,
},
]
// positive num - a before b
// neg - b before a
// 0 - nothing changes
/*
a - b sorts numbers in ascending order and
b - a sorts numbers in descending order
*/
function sortProducts(data) {
return data.sort((a, b) => {
return a.price - b.price
});
}
const listByCheapest = sortProducts(shoppingList);
// console.log(listByCheapest);
listByCheapest.forEach(({ product, price }) => console.log(product, price));