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