7 lines
94 B
JavaScript
7 lines
94 B
JavaScript
|
|
var s=1, e=10
|
||
|
|
for (;; s+=1) {
|
||
|
|
document.write( s )
|
||
|
|
if (s==e) break
|
||
|
|
document.write( ', ' )
|
||
|
|
}
|