What does undefined value mean in javascript? »
| 0 Comments |
Undefined value means the variable used in the code doesnt exist or is not assigned any value or the property doesnt exist.
Java Interview Questions | IT interview questions | Software Testing Interview questions | .Net Interview Questions | Job Interview Questions & Answers | Tough Interview Questions | Technology Interview Questions | Tech Interview Questions | Testing Interview Questions | SAP Interview Questions | ABAP Interview Questions | Data Warehousing Interview Questions
Category: Javascript Interview Questions| 0 Comments |
Undefined value means the variable used in the code doesnt exist or is not assigned any value or the property doesnt exist.
| 0 Comments |
The null value is a unique value representing no value or no object.
It implies no object,or null string,no valid boolean value,no number and no array object.
| 0 Comments |
Number.MAX_VALUE
Number.MIN_VALUE
| 0 Comments |
Use // for line comments and
/*
*/ for block comments
| 0 Comments |
Use the below specified style of comments
script language=javascript
or Use the tags and code the display html statements between these and this will appear on the page if the browser does not support javascript
| 0 Comments |
Breaking is possible within a string statement by using a backslash \ at the end but not within any other javascript statement.
that is ,
document.write(”Hello \world”);
is possible but not
document.write \
(”hello world”);
| 0 Comments |
A prompt box allows the user to enter input by providing a text box.
| 0 Comments |
An alert box displays only one button which is the OK button whereas the Confirm box displays two buttons namely OK and cancel.