InterviewSolution
Saved Bookmarks
| 1. |
The snippet that has to be used to check if “a” is not equal to “null” is _________(a) if(a!=null)(b) if (!a)(c) if(a!null)(d) if(a!==null)I got this question in semester exam.My enquiry is from Types, Values and Variables in section Lexical Structures of JavaScript |
|
Answer» Correct OPTION is (d) if(a!==null) |
|