This page was translated from English by the community.Learn more and join the MDN Web Docs community.
Atomics.or()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2021년 12월.
Atomics.or() 정적 메서드는 배열에서 주어진 위치에 주어진 값으로 OR 비트 연산을 수행하고해당 포지션의 기존 값을 반환합니다. 이 아토믹 연산은 수정된 값이 쓰이기 전까지 다른 쓰기 연산이 일어나지 않음을 보장합니다.
In this article
시도해 보기
// Create a SharedArrayBuffer with a size in bytesconst buffer = new SharedArrayBuffer(16);const uint8 = new Uint8Array(buffer);uint8[0] = 5;// 5 (0101) OR 2 (0010) = 7 (0111)console.log(Atomics.or(uint8, 0, 2));// Expected output: 5console.log(Atomics.load(uint8, 0));// Expected output: 7구문
js
Atomics.or(typedArray, index, value)매개변수
typedArray정수형 형식화 배열.
Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,BigInt64Array,BigUint64Array중 하나.index비트 연산 OR를 계산할
typedArray의 인덱스입니다.value비트 연산 OR와 같이 계산할 숫자입니다.
반환 값
주어진 위치(typedArray[index])의 예전 값.
예외
typedArray가 허용된 정수형이 아닐 경우TypeError가 발생합니다.index가typedArray의 범위를 벗어날 경우RangeError가 발생합니다.
설명
비트 연산 OR은a와b 중 하나라도 1이면 1을 산출합니다. OR 연산에 대한 진리표는 다음과 같습니다.
a | b | a | b |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 1 |
예를 들어,5 | 1의 비트 연산 OR의 값은0101이며 10진수로 5입니다.
5 01011 0001 ----5 0101
예제
>or 사용하기
js
const sab = new SharedArrayBuffer(1024);const ta = new Uint8Array(sab);ta[0] = 2;Atomics.or(ta, 0, 1); // 이전 값 2를 반환합니다.Atomics.load(ta, 0); // 3명세서
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-atomics.or> |