Играть в уведомление звучит в чате JS

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