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