Mingtao's Java World
Thursday, 24 November 2016
Javascript: check undefined/null
If you are sure the variable has been declared (i.e var a;), simply use
if
(a
!=
null
){ ... }
If a can be undeclared, then use
if
(
typeof
a
!=
'undefined'
&&
a
!=
null
){ ... }
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment