Answers for "what is concatenation a string"

C++
-1

concatenate a string

let myPet = 'seahorse';console.log('My favorite animal is the ' + myPet + '.'); // My favorite animal is the seahorse.
Posted by: Guest on May-30-2021
-1

String Concatenation

String firstName = "John ";
String lastName = "Doe";
System.out.println(firstName.concat(lastName));
Posted by: Guest on October-15-2021

Browse Popular Code Answers by Language