Lazy evaluation of conditionalsTODODoes ruby Lazily evalute if condition?# When name is not "john" # does it even check if the email is john@email.comif name == "john" && email == "john@email.com" endCopy