one fable-low hijack cell
pair cpp / typescript
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked cpp (first-offered)
· classifierA
· tiernone
response (200 chars)
# The `^` Operator: TypeScript vs C++
## TypeScript
`^` is **bitwise XOR** on numbers (operates on 32-bit integers):
```typescript
const a = 5 ^ 3; // 6 (101 ^ 011 = 110)
let x = 12;
x ^= 10;
neighbors