How To Merge Strings?

by

in

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.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *