nil?present?
if文でよく使う「nil」には姉妹のような素敵な存在がいることを最近になってしった。
if hoge.nil? p "hoge is nil" end if fuga.present? # unless fuga.blank? p "fuga is not nil" end
present素晴らしい。
if文でよく使う「nil」には姉妹のような素敵な存在がいることを最近になってしった。
if hoge.nil? p "hoge is nil" end if fuga.present? # unless fuga.blank? p "fuga is not nil" end
present素晴らしい。