Skip to content

Commit 5023427

Browse files
committed
EvenOdd
1 parent dcca624 commit 5023427

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Programs/Basic/Evenodd.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
4+
let a=10
5+
if (a%2==0) {
6+
7+
console.log("The number is Even" ,a)
8+
9+
} else {
10+
11+
console.log("The number is Odd",a)
12+
13+
}

0 commit comments

Comments
 (0)