JS
challenger
Home
JavaScript Basics
arrays
Count Songs Left in the Playlist
Count Songs Left in the Playlist
You removed two songs from your playlist. Use the array length property to find out how many songs are left.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console