+ 9
How to create an infinite loop in javascript ?
3 odpowiedzi
+ 5
Farhan🏁 thanks
+ 4
Lots of ways are there
while(true){
}
for(var i=0;true;i++){
}
You discover it more by yourself
P.S:Why you want, it will jam your phone
+ 2
while(1)alert("xD")