Answers for "play notification sound on chat js"

0

play notification sound on chat js

function playSound(url) {
  const audio = new Audio(url);
  audio.play();
}
Posted by: Guest on December-14-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language