this post was submitted on 05 Apr 2024
500 points (94.3% liked)
Programmer Humor
19488 readers
1147 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I'll do you one better
function* sorry() { yield "I'm sorry"; }
Call sorry.next().value as many times as you need to baby, hell you can even use it in a for-of loop because Generator functions are Iterable. I fucking love JavaScript
lol that doesn't work either tho. it yields the string once and then is done. you still need a loop inside
You're right! That's actually a really cool point about Generator functions too, them having while(true) loops is very unproblematic :D
I'm correcting myself to:
function* sorry() { while(true){ yield "I'm sorry"; } }