Which of the following is not considered a JavaScript operator?
इनमें से कौन सा जावा स्क्रिप्ट ऑपरेटर नहीं माना जाता है?
Select one:
O a. this
this
O b. typeof
typeof
O c. delete
delete
od new
new
Answers
Answer:
what is the answer please tell me the answer
Answer:
type of
Explanation:
Like other languages, JavaScript has operators.
An operator creates a result by carrying out some operation on one or more operands (data values).
For instance, in the equation 1 + 2 the operator is the plus sign, the operands are 1 on the left and 2 on the right.
The + operator adds two numerical values and outputs the outcome.
The operators ++ and — are unary operators.
Only the left or right operands are compatible with it.
It will raise the value of x when the program control moves to the following statement when used with the left operand, as as in the expression x++.
Similarly, when it is used with the appropriate operand, such as ++x, it will only increase the value of x at that specific location.
Consequently, x++ is known as a post-increment.
#SPJ3