//Written using Nila. Visit http://adhithyan15.github.io/nila (function() { var counter; // This file will demonstrate Nila's while loops counter = 1; while (counter < 11) { console.log(counter); counter = counter + 1; } }).call(this);