Create a function that takes a number as its only argument and returns true if it's less than or equal to zero, otherwise return false.
less_than_or_equal_to_zero(5) ➞ false
less_than_or_equal_to_zero(0) ➞ true
less_than_or_equal_to_zero(-2) ➞ truereturn the result.