Ruby - Operators and Expressions
Consider this Ruby code:
What will be the output?
def check(value) !value || value == 0 end puts check(nil) puts check(0) puts check(5)
What will be the output?
