The concat()
function concatenates all the argument values into a single string.
concat(value1, value2, ...)
value1
, value2
, ...: The values to concatenate. These can be strings, numbers, or other data types that can be converted to strings.Returns a single string containing all the concatenated values.
concat("Hello", " ", "World") // Returns "Hello World"
concat(http.request.uri, "?", http.request.query) // Concatenates the URI and query string