Get to know MDN better
This page was translated from English by the community. Learn more and join the MDN Web Docs community.
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 7월.
**Math.pow()**함수는base^exponent처럼 base 에 exponent를 제곱한 값을 반환합니다.
밑 값.
exponent밑 을 제곱하기 위해 사용하는 지수.
주어진 밑 값을 주어진 지수 값으로 거듭제곱한 숫자 값.
**Math.pow()**함수는 base의 exponent 곱, 즉 base^exponent를 반환합니다. base와 exponent는 10진수입니다.
pow()는 Math의 정적 메서드이므로 Math객체를 생성하여 그 메서드로 사용하지 말고, 항상 Math.pow()로 사용하십시오. (Math에는 생성자가 없습니다). 만약 밑(base) 값이 음수이고 지수(exponent)가 정수가 아닌 경우 결과는 NaN입니다.
| ECMAScript® 2027 Language Specification # sec-math.pow |
Enable JavaScript to view this browser compatibility table.
This page was last modified on 2025년 4월 9일 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.