en.javascript.info/01-js/02-first-steps/10-bitwise-operators/04-bit-rounding/task.md
Ilya Kantor f301cb744d init
2014-10-26 22:10:13 +03:00

12 lines
253 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Почему результат разный?
[importance 5]
Почему результат второго `alert'а` такой странный?
```js
//+ run
alert( 123456789 ^ 0 ); // 123456789
alert( 12345678912345 ^ 0 ); // 1942903641
```