is-six-hundred-and-seventy-five
v1.0.2
Published
Checks if a number is 675
Downloads
225
Readme
is-six-hundred-and-seventy-five
A npm package that checks if a number is 675.
npm i is-six-hundred-and-seventy-five
Examples
import { isSixHundredAndSeventyFive } from 'is-six-hundred-and-seventy-five';
const number1 = 583;
const number2 = 675;
console.log(isSixHundredAndSeventyFive(number1)); // this logs false
console.log(isSixHundredAndSeventyFive(number2)); // this logs true
console.log(isSixHundredAndSeventyFive("six hundred and seventy five")); // this logs true
if (isSixHundredAndSeventyFive(number2)) {
console.log("The number is 675!")
}
if (isSixHundredAndSeventyFive("six hundred and seventy five")) {
console.log("The number is 675!")
}
License
This is licensed under the MIT license. See LICENSE.md.