Jogar som de notificação no chat js

function playSound(url) {
  const audio = new Audio(url);
  audio.play();
}
Bored Beetle