As everyone knows, there are loops while, do while and for in javascript. You can make custom loops using other loops. For example, you can get an analogue of the while loop with for.
for(; true; ) { // code } We get an endless loop. The question is. Is it possible to make a custom loop, but without built-in loops? I was looking for an answer here and in an English-speaking team, but I was close to the answer.