나머지 (%)
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
나머지 연산자(%
)는 왼쪽 피연산자를 오른쪽 피연산자로 나눴을 때의 나머지를 구합니다. 부호는 항상 왼쪽 피연산자의 부호를 따릅니다.
시도해보기
console.log(13 % 5);
// Expected output: 3
console.log(-13 % 5);
// Expected output: -3
console.log(4 % 2);
// Expected output: 0
console.log(-4 % 2);
// Expected output: -0
구문
js
x % y;
예제
양의 피제수의 나머지
js
12 % 5; // 2
1 % -2; // 1
1 % 2; // 1
2 % 3; // 2
5.5 % 2; // 1.5
음의 피제수의 나머지
js
(-12 % 5) - // -2
(1 % 2) - // -1
(4 % 2); // -0
NaN의 나머지
js
NaN % 2; // NaN
Infinity의 나머지
js
Infinity % 2; // NaN
Infinity % 0; // NaN
Infinity % Infinity; // NaN
명세
Specification |
---|
ECMAScript® 2025 Language Specification # sec-multiplicative-operators |
브라우저 호환성
Report problems with this compatibility data on GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Remainder ( % ) |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.