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