■ Math 인터페이스의 pow 메소드를 사용해 지수 연산을 하는 방법을 보여준다.
▶ 예제 코드 (JAVASCRIPT)
1 2 3 4 5 6 |
console.log(Math.pow(2, 2 )); // 4 console.log(Math.pow(2, 2.5)); // 5.65685424949238 console.log(Math.pow(2, 0 )); // 1 console.log(Math.pow(2, -2 )); // 0.25 |