+ 1
What is the work of === (triple equal ) in php operators?
4 Respostas
+ 7
it checks if two values are equal and have the same data type👌
+ 1
Got it , thanks! :)
+ 1
=== is the operator called "are identical". Identical means of the same value as well as the same type!
9 == '9' is true
but
9 === '9' is false
0
why is 25 === "25" false?