#concat
and #<<
are both mutating methods, the only difference is
- concat takes multiple arguments
- << takes only one argument
''.empty?
is exactly as you'd except it
#concat
and #<<
are both mutating methods, the only difference is
''.empty?
is exactly as you'd except it