"!==" What is it?

An easy one for you fellow flashers,
I know what != and == means but, what does !== mean? Just curious. I know I will eventually run in to it’s meaning but just thought I would ask.

Thanks, LOTW

Never mind I figured it out…
LOTW

Can you share ? I’ve never seen that :stuck_out_tongue:

pom :asian:

Here you go:

!== (strict inequality)

Availability

Flash Player 6.

Usage

expression1 !== expression2
Description

Operator; tests for the exact opposite of the === operator. The strict inequality operator performs the same as the inequality operator except that data types are not converted. If expression1 is equal to expression2, and their data types are equal, the result is false. As with the === operator, the definition of equal depends on the data types being compared.

Numbers, strings, and Boolean values are compared by value.

Variables, objects, arrays, and functions are compared by reference.

ENJOY! :slight_smile:

I don’t see how this can be useful bu thanks !

pom :asian: