let a = "foo"; let b = ["f", "o", "o"]; let c = a.concat("bar"); // "foobar" let d = b.concat(["b", "a", "r"]); // ["f","o","o","b","a","r"]