Advertisement
bolo17

Untitled

Mar 30th, 2022
943
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. JavaScript Algorithms and Data Structures
  2. Basic JavaScript
  3. Compound Assignment With Augmented Multiplication
  4. The *= operator multiplies a variable by a number.
  5.  
  6. myVar = myVar * 5;
  7. will multiply myVar by 5. This can be rewritten as:
  8.  
  9. myVar *= 5;
  10. Convert the assignments for a, b, and c to use the *= operator.
  11.  
  12. for more: https://www.clictune.com/eBIB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement