append char to end of string 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;