append a char from a string to a new string in java code example
Example: append a character to string java
1. String otherString = "helen" + character;
2. otherString += character;
1. String otherString = "helen" + character;
2. otherString += character;