Anonymous Asked in Cars &Transportation · 2 weeks ago

What is the meaning of === operator?

=== is the strict equality operator. It does not attempt to type coerce the operands. For example: 0 == false; //true (false coerces to 0) 0 === false; //false (no type coercion) 7 февр. 2012 г.


What is the use of === operator?

The strict equality operator ( === ) checks whether its two operands are equal, returning a Boolean result. Unlike the equality operator, the strict equality operator always considers operands of different types to be different.

What is === mean?

The === operator means "is exactly equal to," matching by both value and data type. The == operator means "is equal to," matching by value only.

What does === mean in C ++?

What does === triple equal means. Just like double equal operator === also used to compare two values on left and right. This will also return true or false based on comparison.

What is meaning of === in Python?

The === operator checks to see if two operands are equal by datatype and value.

Related Questions

Relevance
Write us your question, the answer will be received in 24 hours