Skip to content

tj-commits/is-number-odd-or-even

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

is-number-odd-or-even

=======================================

At least 99% of the time, any number can be odd or even. This uncertainty can be eliminated with is-number-odd-or-even. As it sports an incredibly fast, open-ended API, you can solve all even or odd related problems with only 1 line.


List of features

  • See if a number is odd or even
  • Output useful logs if logging is enabled while doing stuff

What it does

A clarification: this library doesn't return a different value depending on whether the number is odd or even, for example, true or false, it always returns true whether the number is odd or even unless the number is infinity.

Download & Installation

$ npm i is-number-odd-or-even

Usage

Just import the library and pass in two arguments: the value that you want to check is odd or even, and a boolean whether to output useful logs!

Code Demo

Importing

const isOddOrEven = require("is-number-odd-or-even")

Example usage:

const isOddOrEven = require("is-number-odd-or-even")
const test1 = isOddOrEven(1, false) // outputs no logs because logging is disabled
const test1 = isOddOrEven(2, false) // outputs no logs because logging is disabled
const test3 = isOddOrEven(Infinity, true) // outputs logs because logging is enabled
console.log(test1) // true
console.log(test2) // true
console.log(test3) // false (because infinity is not odd or even)

License

This project is licensed under the MIT License

About

check if a number is odd or even

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •