UNPKG

programmingconcepts

Version:

This is test module for Programming Concepts Node JS Application

14 lines (11 loc) 166 B
//Use of Variables x = 10; y = 15; var z = x + y; console.log(z); //Use of Do-While Loop var x = 0; do { ++x; console.log("x: " + x); }while(x < 5);