in javascript coding (netbeans)
1). Consider the code below. What is the output the programproduces?
/** A simple program that prints a loop control variable.*/public class SimpleLoop{ public static void main(String[] args) { int i = 0; int limit = 6; while (i < limit) { System.out.println(“i = ” + i); i++; }
OR
OR