Created
November 4, 2013 09:25
-
-
Save kyuden/7300144 to your computer and use it in GitHub Desktop.
【WZ】<複数要素の比較>
・複数要素の一致判定を行う場合
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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