# **

Math.pow 함수를 이용하던 방식에서 ** 방식으로 추가가 되었습니다.

let num = 3;

// ES5
console.log(Math.pow(num, num)); // 27

// ES6
console.log(num ** num); // 27