Skip to content

Instantly share code, notes, and snippets.

@kyuden
Created November 4, 2013 09:25
Show Gist options
  • Save kyuden/7300144 to your computer and use it in GitHub Desktop.
Save kyuden/7300144 to your computer and use it in GitHub Desktop.
【WZ】<複数要素の比較> ・複数要素の一致判定を行う場合
# bad
if hash[:apple] == "mac" || hash[:apple] == "ipad"
# good
if %w( mac ipad ).include? hash[:apple]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment