The arithmetic operator _______ increments the value of a variable by 1.

  • ++
  • --
  • +
  • +=
The arithmetic operator '++' is known as the increment operator. It increases the value of a variable by 1. For example, if you have a variable x and you write x++, it will increment the value of x by 1. This is commonly used in loops and counters in JavaScript.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *