String concatenation is the operation of joining two character strings end-to-end.
In Elixir, you can concatenate strings with the <> operator, like in "Hello" <> " " <> "World". You …