sissou123

Untitled

Mar 16th, 2022
97
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 Division
  4. The /= operator divides a variable by another number.
  5.  
  6. myVar = myVar / 5;
  7. Will divide 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. for more:https://ouo.io/GKMe6B
  12.  
Add Comment
Please, Sign In to add comment