👉 Fizzed is a term used in computing to describe an expression that evaluates to false, meaning it returns a falsy value. For example, if we have an expression like this: ``` expression = 5 % 3 == 0 ? "Fizz" : "Buzz"; ``` Then the fizzed version of this expression would be: ``` fizzed(expression) === "Fizz" ```