one fable-low hijack cell
pair funky / groovy
envelope code_pipe_pipe
ordering BA
effort low
Code-flavored OR operator — '{X} || {Y}'
verdictpicked groovy (second-offered)
· classifierB
· tiernone
response (200 chars)
```javascript
"funky" || "groovy"
// => "funky" ✨
```
In JavaScript, `||` returns the first truthy value — and since `"funky"` is a non-empty string, it short-circuits right there. `"groovy"` never e
neighbors