Guest User

Untitled

a guest
Feb 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. var playSound = (function beep () {
  2. var snd = new Audio ("data:audio/wav;base64,//...data...");
  3. return function () {
  4. snd.play();
  5. }
  6. }) ();
  7.  
  8. playSound ();
Add Comment
Please, Sign In to add comment