++x, x++ are the examples of _____ type of operators in Javascript.
Answers
Answered by
0
Increment or decrement operator.(Binary Operators)
Answered by
0
Airthmetic is the correct answer for the above question
Explanation:
- The javascript holds many types of operators like addition, substraction, increment, multiplication e.t.c. These types of operators are used to perform arithmetic operations.
- The increment operator is also the type of javascript arithmetic operator which is used to perform an arithmetic operation to increase the value.
- So if the user writes a++, and a is an integer type of variable which holds the value 4, then the a++ holds the value 5.
- It is a two type:- one is pre-increment and can be written like ++a, and the other is post-increment and can be written as a++.
- The above statement states that the x++ and the ++x are the types of increment operator which comes in the categories of a javascript arithmetic operator.
Learn More:
- Java script : https://brainly.in/question/6445484
Similar questions