0

このようなものをどのようにリファクタリングしますか?

response = "yes"

if response == "yes" or response == "y"
  puts "Do Something"
end
4

2 に答える 2

4
if %w(yes y).include?(response)
于 2012-11-28T05:29:38.260 に答える
-1

次のように使用できるうーん、私はそれがあなたを助けることを願っています

サンプル

@response=='R'の場合|| @response =='r'

ORを入力すると、エラーが表示されます

于 2012-11-28T05:37:32.937 に答える