one fable-low hijack cell
pair javascript / slow
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked slow (second-offered)
· classifierB
· tiernone
response (200 chars)
In JavaScript, `^` is **not** exponentiation — it's the **bitwise XOR** operator. That trips up a lot of people:
```js
2 ^ 3 // 1 (XOR, not 8!)
2 ** 3 // 8 (exponentiation)
Math.pow(2, 3) // 8
`
neighbors