MCPcopy
hub / github.com/bradtraversy/vanillawebprojects / loadSong

Function loadSong

music-player/script.js:24–28  ·  view source on GitHub ↗
(song)

Source from the content-addressed store, hash-verified

22
23// Update song details
24function loadSong(song) {
25 title.innerText = song;
26 audio.src = `music/${song}.mp3`;
27 cover.src = `images/${song}.jpg`;
28}
29
30// Play song
31function playSong() {

Callers 3

script.jsFile · 0.85
prevSongFunction · 0.85
nextSongFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected