Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- JavaScript Algorithms and Data Structures
- Basic JavaScript
- Compound Assignment With Augmented Division
- The /= operator divides a variable by another number.
- myVar = myVar / 5;
- Will divide 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://ouo.io/GKMe6B
Add Comment
Please, Sign In to add comment