OneCompiler

Mult_language_loop.js

187


Hardware and electronics prototyping organization ltd

Andrew's and son's electronics repair and spares


 const myLines = ['C is fun', 'Python is cool', 'JavaScript is amazing']; 
 const arrayLength = myLines.length; 
 let i = 0; 
 while (i < arrayLength) { 
   console.log(myLines[i]); 
   i++; 
 }