is there any way to run something only once in JavaScript?

I’m trying to put an audio into a code when it’s run, but since the browser I use doesn’t allow autoplay, I tried alternatively using a ‘button’ at the start to play the audio, but it keeps crashing. I don’t know how to create buttons so I’m using a rectangle and when mouse is pressed within the barrier of the rectangle, the variable to start the audio becomes true. This is my code:

if(starty = 380){ /*if it’s pressed at a specific time*/
  if(startx + startw > mouseX && mouseX > startx){
    if(starty + starth > mouseY && mouseY > starty) {
        if(mouseIsPressed){
          start = true;
        } 
  }
  }
}

if (start == true){
  startr = 0;
  song.play();
}

But I figured since the audio is played continuously while start = true, it happens too many times and crashes.

I tried adding a for loop to song.play() but it didn’t work 🙁

if (start == true){
  startr = 0;
  for (let i = 0; i < 2; i += 1) { /*hopefully this makes it run only once*/
    song.play();
  }
}

But it still crashes and I’m not sure what to do.
Also this is my first time asking a question so it might be a bit messy, sorry. Thank you!