Führen Sie eine Schleife in eine Konsole aus. NICHT leere Linie

console.log(Array.apply(null, {length: 10}).map(function(el, index){
   return index;
}).join(' '));
Successful Stag