An infinite while loop



examples/js/infinite_loop.js
"use strict";

while (true) {
    ...
    if (CONDITION) {
        break;
    }
}