Skip to content

Instantly share code, notes, and snippets.

@dinks
Created January 19, 2015 17:08
Show Gist options
  • Select an option

  • Save dinks/f87c38e8879f9a495890 to your computer and use it in GitHub Desktop.

Select an option

Save dinks/f87c38e8879f9a495890 to your computer and use it in GitHub Desktop.
nil? v/s empty? v/s blank?
# Rails
nil.nil? # true
"".empty? # true
[].empty? # true
{}.empty? # true
nil.empty? # NoMethodError
" ".empty? # false
nil.blank? # true
false.blank? # true
[].blank? # true
{}.blank? # true
"".blank? # true
5.blank? # false
" ".blank? # true
!obj.blank? == obj.present?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment