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