Concatenates all arguments into a single string.
Non-string values are converted to their text representation before
joining. Accepts any number of arguments.
Examples
concat('foo', 'bar') → 'foobar'
concat('a', 1, true) → 'a1true'
concat('Hello', ' ', name) → 'Hello Alice' (when name is 'Alice')