Monads when no regex

  • MoreLikeSexbearLmao [he/him]
    ·
    3 years ago

    I disagree, I think python handles it pretty well. JS just has some pretty bad rules for truthiness.

    In python:

    • numbers are truthy if they're non-zero

    • containers and strings are truthy if they are non-empty

    • a regex result is truthy if it matched something

    • the None object is not truthy

    • custom objects are truthy by default, but you can define the thruthiness function