Use interpolation to merge strings instead of using concatenation. Comparatively, Interpolation would be faster than the concatenation.
Don’ts
puts “my name is ” + concatenation
Do’s
put “my name is #{interpolation}”
Interpolation supports “typecasting” but concatenation won’t support.
Leave a Reply