Оператор присвоєння з побітовим І (&=
) використовує двійкове представлення обох операндів, виконує над ними операцію побітового І та присвоює результат змінній.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
Синтаксис
Оператор: x &= y Значення: x = x & y
Приклади
Використання присвоєння з побітовим І
let a = 5;
// 5: 00000000000000000000000000000101
// 2: 00000000000000000000000000000010
a &= 2; // 0
Специфікації
Сумісність з веб-переглядачами
BCD tables only load in the browser