typescript endless loop

Solutions on MaxInterview for typescript endless loop by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
showing results for - "typescript endless loop"
Alan
11 May 2018
1for (;;) { 
2   console.log(“This is an endless loop”) 
3}
4// or
5while (true) { 
6   console.log(“This is an endless loop”) 
7}