© 2026 Hedgehog Software, LLC
let a = 2; let b = 5; a *= 2 + b; console.log(a); // 14
a = a * ( 2 + b )
a = a * 2 + b
*=