Write Your JavaScript Code Here

// concat():It provides a combination of two or more strings. // string.concat(str1,str2,...,strn) let srt1="Autobots" let srt="Reunite"; let darkMoon= srt1.concat(" ",srt); console.log(darkMoon);

Output: