What will be the output of the following code?
function square(number) {
return number * number;
}
let result = square(square(3));
console.log(result);
What will be the output of the following code?
function square(number) {
return number * number;
}
let result = square(square(3));
console.log(result);