let string = "hello"; string += " world"; // "hello world" const newString = string + "!"; // "hello world!"