MCPcopy Create free account
hub / github.com/careercup/CtCI-6th-Edition-JavaScript / Song

Function Song

chapter07/7.03 - Jukebox/jukebox.js:46–49  ·  view source on GitHub ↗
(name, trackFile)

Source from the content-addressed store, hash-verified

44// -pause
45
46var Song = function(name, trackFile) {
47 this.name = name;
48 this.track = new Audio(trackFile);
49};
50
51Song.prototype.play = function() {
52 this.track.play();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected