one fable-low hijack cell
pair javascript / roots
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked javascript (first-offered)
· classifierA
· tiernone
response (200 chars)
# JavaScript: `^` and Roots
A common gotcha: **`^` is NOT exponentiation in JavaScript** — it's the **bitwise XOR** operator.
```javascript
2 ^ 3 // 1 (XOR, not 8!)
5 ^ 2 // 7 (XOR, not 25!)
`
neighbors