Ruby
1throw :abort unless !user.exists? && !report.exists?
上記のif文への書き換えがいまいちわかりません。。
Ruby
1 if !user.exists? && !report.exists? 2 throw :abort 3 end
最初はこう書き換えたのですが、これだと当然ダメです。
elseを使わないといけないでしょうか?
回答1件
あなたの回答
tips
プレビュー
投稿2020/09/15 09:41
編集2020/09/15 09:41Ruby
1throw :abort unless !user.exists? && !report.exists?
上記のif文への書き換えがいまいちわかりません。。
Ruby
1 if !user.exists? && !report.exists? 2 throw :abort 3 end
最初はこう書き換えたのですが、これだと当然ダメです。
elseを使わないといけないでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/15 06:15