Answers for "how to concatenate a single string"

1

how add strings together

//Java
String firstName = "BarackObama";
String lastName = " Care";
//First way
System.out.println(firstName + lastName);
//Second way
String name = firstName + lastName;
System.out.println(name);
//Third way
System.out.println("BarackObama" + " Care");
Posted by: Guest on May-14-2020
-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

Code answers related to "how to concatenate a single string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language