INNER CODE UNIT · JavaScript
makeSound
sdkdeepa/Udemy-web-bootcamp · Drum-Kit/index.js:28
function makeSound(key){
switch (key) {
case "w":
var tom1 = new Audio('sounds/tom-1.mp3');
tom1.play();
break;
case "a":
var tom2 = new Audio('sounds/tom-2.mp3');
tom2.play();
break;
case "s":
var tom3 = new Audio('sounds/tom-3.mp3');
tom3.play();
break;