JSFiddle - React, Tailwind, and code Playground

by realhunts

JavaScript

let counterr = 1000000001
        
          while( counterr-- ) {
            if( counterr % 100000000 === 0 ){
              console.log( `While loop is Currently at : ${counterr}` ) 
            } 
          }

        console.log( '--------- While Loop has Ended! ---------' )