What does undefined value mean in javascript?
Undefined value means the variable used in the code doesnt exist or is not assigned any value or the property doesnt exist. Read more »
Undefined value means the variable used in the code doesnt exist or is not assigned any value or the property doesnt exist. Read more »
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. Read more »
Number.MAX_VALUENumber.MIN_VALUE Read more »
Use // for line comments and /* */ for block comments Read more »
Use the below specified style of comments or Use the some html code tags and code the display html statements between these and this will appear on the page if... Read more »
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... Read more »
A prompt box allows the user to enter input by providing a text box. Read more »
An alert box displays only one button which is the OK button whereas the Confirm box displays two buttons namely OK and cancel. Read more »
This can be achieved by using the following tag between head tags or between body tags. where abc.js is the external javscript file to be accessed. Read more »
Yes.Since javascript is a client-side script it does require the web server’s help for its computation,so it is always faster than any server-side script like... Read more »
The “Access Denied” error in any browser is due to the following reason. A javascript in one window or frame is tries to access another window or frame... Read more »
document.bgcolor property can be set to any appropriate color. Read more »
Generation of HTML pages on-the-fly without accessing the Web server. The user can be given control over the browser like User input validation Simple computations... Read more »
This depends on the user’s browser and OS. In the case of Netscape with Windows OS,all the cookies are stored in a single file called cookies.txt c:\Program... Read more »
In order to detect the operating system on the client machine, the navigator.appVersion string (property) should be used. Read more »