previous |
start |
next
Characters
- char: character type—a single Unicode
character
- Character constants use single quotes:
'A', '\n', '\u00E9'
- 'A'is not the same as "A"
- charAt method gets character from a string
"Hello".charAt(0) is 'H'
previous |
start |
next