Language GuideBuilt-in TypesArrayMethodsjoinOn this pagejoinConcatenate each element of the array into a string with the specified separator. ["hello", "world!"].join(", "); // "hello, world!" Syntax join(separator) Returns A string with the concatenated values. Notes Requires that each element of the array is a string!