JavaScript Forever Loop
while(0 == 0) {
//whatever
}
Cautious Cardinal
while(0 == 0) {
//whatever
}
while (true) {
//your code
}
while(2 == 2) {
//your code here
}
x = 2;
while (x == x) {
//please add your code here
}
for (var i=0; i<Infinity; i++) {}