連接兩個字串參數或字串清單。
字串
concat(<parameters>)
concat(<string>,<string>)
concat(<listString>)
返回字串。
concat("Hello","World")
返回"HelloWorld"。
concat(["Hello"," ","World"])
返回「Hello World」。