Ad
  • Default User Avatar

    It's a label for the loop. Basically it's a way of writing a goto target in Javascript and you should probably never ever use it.

    loop: for followed by continue loop means that when continue loop is encountered, it immediately jumps to continue the loop labeled loop:, breaking out of whatever nested loops necessary to do so.