scrimba
Note at 2:56
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 2:56
AboutCommentsNotes
Note at 2:56
Expand for more info
index.js
run
preview
console
const player = document.getElementById("player")

function playSong(id) {
// Challenge: Add code here to make the youtube player play the new YouTube song
player.src = `https://www.youtube.com/embed/${id}?autoplay=1`
console.log(player.src);
}
Console
"https://www.youtube.com/embed/1qYz7rfgLWE?autoplay=1"
,
/index.html
LIVE