In some programs, you may need to combine arrays into strings, such as processing var aArray = ["a", "b", "c"]; into string form. There are two methods here. Of course, if you have a better method, don’t forget to leave a message to me.
First type:
aArray.toString()
Second type:
aArray ""
Demo: