1 Answer

+5 votes
by kratos
 
Best answer

(i) 'CharAt' returns the character value at a particular position.

(ii) 'replace' replaces each occurrence of the first argument in a string with the second argument.

Ex.* = "Hello"

*.CharAt (0); // H

.replace ('', ''); // H llo

...