The number 2
is stored in the variable n (let n = 2;)
. The command n = n*n*n
is then called. This last command can be replaced by:
n **= n;
n **= 3;
n *= 3;
n ***= n;
Answers Explanation & Hints:
The command In JavaScript, the So, when Here’s an example to illustrate this: let n = 2; n **= 3; console.log(n); // Output: 8 In this case, the value of To summarize, the command |