fork download
  1. function writeCharacters() {
  2. for (let i = 65; i <= 90; ++i) {
  3. console.log(String.fromCharCode(i));
  4. }
  5. }
  6.  
  7. writeCharacters();
Success #stdin #stdout 0.03s 16812KB
stdin
Standard input is empty
stdout
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z