Skip to content

Instantly share code, notes, and snippets.

@rayway30419
Created December 4, 2016 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rayway30419/1565437a1de6e9f4ab7413c3ca817992 to your computer and use it in GitHub Desktop.
Save rayway30419/1565437a1de6e9f4ab7413c3ca817992 to your computer and use it in GitHub Desktop.
Effective ruby note #1
# Ruby內除了nil以及false以外皆為真值
obj = 0
obj = ''
obj = {}
puts obj ? true : false
# true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment