This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Works in Chrome devtools console | |
function* downToZero (n) { | |
yield n; // yield "first" element of the "list" | |
if (n > 0) // yield each element of the "rest" of the "list" | |
for (var n2 of downToZero(n - 1)) | |
yield n2; | |
} | |
var tenToZero = downToZero(10); |
NewerOlder