is-thirteen
is-thirteen copied to clipboard
is 12??????
Just do 13-1
Ex: (13-1)+1 == 13 = true!
const a = prompt('Input a number to determine if the number is 12')
console.log(is(a).plus(1).thirteen() ? 'yes' : 'no')
const a = prompt('Input a number to determine if the number is 12') console.log(is(a).minus(1).thirteen() ? 'yes' : 'no')
I believe that should be plus(1)
?
const a = prompt('Input a number to determine if the number is 12') console.log(is(a).minus(1).thirteen() ? 'yes' : 'no')
I believe that should be
plus(1)
?
Oh, you're right. Edited!