Friday , September 20 2024

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:

Questions BankCategory: JavaScript Essentials 1The 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:
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;

More Questions: JavaScript Essentials 1 – JSE1: Module 3 Test