CJCoding With Joseph

For Loop: Print Letters A to E

Use a for loop and String.fromCharCode to print the letters A, B, C, D, E, each on its own line. The character code for A is 65.

Expected output:

A
B
C
D
E

Expected Output:

A
B
C
D
E
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.