fork download
  1. // your code goes here
  2. let name="WILLIAM";
  3. let text="";
  4. for(x of name)
  5. {text+= x +","+" "+"\n"};
  6. console.log(text)
Success #stdin #stdout 0.04s 16416KB
stdin
Standard input is empty
stdout
W, 
I, 
L, 
L, 
I, 
A, 
M,