scrimba
Note at 2:59
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:59
AboutCommentsNotes
Note at 2:59
Expand for more info
index.js
run
preview
console
function playSong(id) {
// Challenge: Add code here to make the youtube player play the new YouTube song

//iframe id:
const player = document.getElementById("player")
//new yt video source with new id:
const newSrc = `https://www.youtube.com/embed/${id}?autoplay=1`
console.log(id)
//set the src attribute of the iframe to play the new video
player.src = newSrc
}

Console
"PoAjmmD89Vw"
,
"1qYz7rfgLWE"
,
"AN_R4pR1hck"
,
"WaNwEkCeZrE"
,
"R_vmuL0gjU0"
,
/index.html
LIVE