Beginner
Understanding JavaScript Arithmetic Operations: Step-by-Step Value Assignment and Multiplication
What will this code output?
1let number = 5;2number += 2;3number *= 3;4console.log(number);
What will this code output?
1let number = 5;2number += 2;3number *= 3;4console.log(number);