Last active
March 17, 2018 13:56
-
-
Save larytet/15e958aff2af766aea444abaf7768896 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE HTML> | |
<html> | |
<body> | |
<p>Before the script...</p> | |
<script> | |
function* range(begin, end, step=1) { | |
for (var i = begin; i != end; i += step) { | |
yield i; | |
} | |
}; | |
window.onload = function() { | |
for (var i of range(1,50)) { | |
if (!(i % 2)) { | |
console.log(i); | |
} | |
} | |
}; | |
</script> | |
<p>...After the script.</p> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment