JavaScript: String.prototype.concat

By Xah Lee. Date: . Last updated: .
str.concat(str1, str2 etc)

Join string

same as str+str1+str2+

console.log( "a".concat ( "b", "c") === "abc" ); 
BUY
ΣJS
JavaScript in Depth