The concat() of a String concatenates the string arguments to the string and returns a new string.

    
    const greeting = 'Hello';
    const name = 'Zeke Johnson';

    const beginning = greeting.concat(', ', name));

    console.log(beginning);
    // "Hello, Zeke Johnson"