fork(1) download
  1. // your code goes here
  2. const arr=["a","b","c","d"];
  3. let text="";
  4. for(let x of arr) {text +=x}
  5. console.log(text)
Success #stdin #stdout 0.03s 16676KB
stdin
Standard input is empty
stdout
abcd