#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
last updated:
#concat
and #<<
are both mutating methods, the only difference is
''.empty?
is exactly as you'd except it