Special Operators:-
The following operators are known as JavaScript Special operators.
Operator |
Description |
Delete |
डिलीट ऑपरेटर ऑब्जेक्ट से एक property को हटा देता है। |
Instanceof |
जाँचता है कि क्या वस्तु दिए गए प्रकार का instance है |
Typeof |
Object के प्रकार की जाँच करता है। |
Void |
यह expression के रिटर्न value को discard करता है। |
New |
एक instance (ऑब्जेक्ट) बनाता है |
Yield |
जनरेटर के iterator द्वारा जनरेटर में क्या लौटा है, इसकी जाँच करता है। |
(?) |
Conditional operator शर्त के आधार पर मूल्य देता है। यह ऐसा ही है जैसे if-else |
, |
Comma Operator कई अभिव्यक्तियों का मूल्यांकन एकल अभिव्यक्ति (expression) के रूप में करने की अनुमति देता है। |
Special Operators:-
The following operators are known as JavaScript Special operators.
Operator |
Description |
Delete |
The delete operator removes a property from the object. |
Instanceof |
Checks whether the object is an instance of the given type |
Typeof |
Checks the type of Object. |
Void |
It discards the return value of the expression. |
New |
Creates an instance (object) |
Yield |
Checks what is returned to the generator by the generator’s iterator. |
(?) |
Conditional operator returns a value based on the condition. It’s like if-else |
, |
The Comma Operator allows multiple expressions to be evaluated as a single expression. |