Does === exist in jquery

javascript, jquery, syntax

Solution

Yes the operator exists in javascript. jQuery is just a framework built with javascript so all of the javascript syntax and operators are still there.

Problem

I'm aware of the `===` operator in PHP which connotes not only value equality, but type matching also i.e. ``` if (20 === "20") //false ``` Is there something similar in javascript if I'm using jquery? Examples code could help too. Thanks

Original source