• python@programming.dev
    link
    fedilink
    arrow-up
    0
    ·
    3 months ago

    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

    • brian@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      3 months ago

      lol that doesn’t work either tho. it yields the string once and then is done. you still need a loop inside