Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 166 Bytes

truthy-strings.md

File metadata and controls

10 lines (8 loc) · 166 Bytes

Truthy Strings

Ruby strings are truthy, and they evaluate to zero, unless they start with a number.

> 'nine to five'.to_i
 => 0
> '9 to 5'.to_i
 => 9