JS: String.prototype.concat

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

Join strings

console.assert("a".concat("b", "c") === "abc");

JS String.prototype