hey all,

Is there difference between these commands below?

Code:
if (test iswm test) { }
if (test == test) { }
 


case-sensitive:
Code:
if (tesT iswmcs tesT) { }
if (tesT === tesT) { }


I am not sure but I could say that iswm & iswmcs could use wild-chars while equal signs DO NOT.

I hope my guess is right!

thanks.