Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- JavaScript Algorithms and Data Structures
- Basic JavaScript
- Compound Assignment With Augmented Multiplication
- The *= operator multiplies a variable by a number.
- myVar = myVar * 5;
- will multiply myVar by 5. This can be rewritten as:
- myVar *= 5;
- Convert the assignments for a, b, and c to use the *= operator.
- for more: https://www.clictune.com/eBIB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement