0
javascript
Please calculate and type the resulting value of the following expression: var result = 20; result *= 5;
1 Antwoord
+ 5
var result = 20;
result *= 5;
document.write(result);
✓output will be 100
✓20x5 =100
Please calculate and type the resulting value of the following expression: var result = 20; result *= 5;