Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 78 additions & 0 deletions 17 - Sort Without Articles/changi.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Sort Without Articles</title>
</head>
<body>
<style>
body {
margin: 0;
font-family: sans-serif;
background: url("https://source.unsplash.com/nDqA4d5NL0k/2000x2000");
background-size: cover;
display: flex;
align-items: center;
min-height: 100vh;
}

#bands {
list-style: inside square;
font-size: 20px;
background: white;
width: 500px;
margin: auto;
padding: 0;
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.05);
}

#bands li {
border-bottom: 1px solid #efefef;
padding: 20px;
}

#bands li:last-child {
border-bottom: 0;
}

a {
color: #ffc600;
text-decoration: none;
}
</style>

<ul id="bands"></ul>

<script>
const bands = [
"The Plot in You",
"The Devil Wears Prada",
"Pierce the Veil",
"Norma Jean",
"The Bled",
"Say Anything",
"The Midway State",
"We Came as Romans",
"Counterparts",
"Oh, Sleeper",
"A Skylit Drive",
"Anywhere But Here",
"An Old Dog",
];

function strip(bandName) {
return bandName.replace(/^(a|the|an)/i, "").trim();
}

const sortedBands = bands.sort((a, b) => {
return strip(a) > strip(b) ? 1 : -1;
});

document.querySelector("#bands").innerHTML = sortedBands
.map((band) => {
return `<li>${band}</li>`;
})
.join("");
</script>
</body>
</html>