Update xor.md

This commit is contained in:
Bhaskar Maity
2020-10-05 23:54:19 +05:30
committed by GitHub
parent 34e5528132
commit e0192d61d3

View File

@ -5,7 +5,7 @@ tags: math,logic,beginner
Returns `true` if only one of the arguments is `true`, `false` otherwise. Returns `true` if only one of the arguments is `true`, `false` otherwise.
- Using basic or (`||`), and (`&&`), and not (`!`) operators Logical xor. - Logical xor using basic or (`||`), and (`&&`), not (`!`) operators.
- You can use the Bitwise xor (`^`) operator also on the two given values. - You can use the Bitwise xor (`^`) operator also on the two given values.
```js ```js