Checking if a variable is not nil and not zero in ruby

前端 未结 18 1787
臣服心动
臣服心动 2020-12-22 15:38

I am using the following code to check if a variable is not nil and not zero

if(discount != nil && discount != 0) 
  ...
end

Is the

18条回答
  •  情深已故
    2020-12-22 16:32

    I believe the following is good enough for ruby code. I don't think I could write a unit test that shows any difference between this and the original.

    if discount != 0
    end
    

提交回复
热议问题