UNPKG
programmingconcepts
Version:
latest (1.0.0)
1.0.0
This is test module for Programming Concepts Node JS Application
programmingconcepts
/
programmingConcepts.js
14 lines
(11 loc)
•
166 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//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
);