Skip to main content

String

concat

concat: (string, string) => string
concat("foo", "bar"); // foobar
"foo" + "bar"; // foobar
"foo" + 3; // foo3