function add(a, b) { return a + b; }
const luyThua = function (x, a) { return x ** a; // x^a }; console.log(luyThua(2, 3)); // 8 = 2*2*2 = 2^3
const add = (a, b) => a + b; console.log(add(2, 3)); // 5