+3 votes
in Class 12 by kratos

Write a Java statement to :

Append a string "ABC" to the text that is already-in the text area named jTextAreal.

1 Answer

+5 votes
by kratos
 
Best answer

Statement:

jTextAreal.append("ABC") ;

...