scrimba
Note at 1:03
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 1:03
AboutCommentsNotes
Note at 1:03
Expand for more info
index.js
run
preview
console
const xmasGifts = ['guitar 🎸', 'skates ⛸️', 'bear 🧸', 'magnet 🧲', 'laptop 💻', 'games console 🎮 ', 'jewellery 💍', 'kite 🪁']

const sortedAZ = xmasGifts.sort((a,b)=>{
const aGift = a.split(' ')[0];
const bGift = b.split(' ')[0];

if(aGift < bGift) return -1;
if(aGift > bGift) return 1;
})
console.log("Ascending order: ", sortedAZ);
//["bear 🧸", "games console 🎮 ", "guitar 🎸", "jewellery 💍", "kite 🪁", "laptop 💻", "scarf 🧣", "skates ⛸️"]

const sortedZA = xmasGifts.sort((a,b)=>{
const aGift = a.split(' ')[0];
const bGift = b.split(' ')[0];

if(aGift < bGift) return 1;
if(aGift > bGift) return -1;
})
console.log("Descending order: ", sortedZA);
//["skates ⛸️", "scarf 🧣", "laptop 💻", "kite 🪁", "jewellery 💍", "guitar 🎸", "games console 🎮 ", "bear 🧸"]
Console
"Ascending order: "
,
[
"bear 🧸"
,
"games console 🎮 "
,
"guitar 🎸"
,
"jewellery 💍"
,
"kite 🪁"
,
"laptop 💻"
,
"magnet 🧲"
,
"skates ⛸️"
]
,
"Descending order: "
,
[
"skates ⛸️"
,
"magnet 🧲"
,
"laptop 💻"
,
"kite 🪁"
,
"jewellery 💍"
,
"guitar 🎸"
,
"games console 🎮 "
,
"bear 🧸"
]
,
/index.html
LIVE