UNPKG
return-if-odd-number
Version:
latest (1.0.0)
1.0.0
Is the number odd
github.com/iamrahulpatel/isOdd
iamrahulpatel/isOdd
return-if-odd-number
/
index.js
8 lines
(7 loc)
•
121 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
function
isOdd
(num)
{
if
(num %
2
){
return
true
}
else
return
false
}
module
.
exports
= isOdd