How to check for undefined in javascript?
- by chobo2
Hi
I want to make an if statement that if the value is not defined then let it go through.
I tried
if (something != "undefined")
and
if (something !== "undefined")
However it seems to go into the if statement no matter what. If it is undefined it goes through. If it is defined it goes through. Am I doing something wrong?