Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How to create an input box?
How to create an input box? prompt("What is your temperature?"); 2011-03-08, 4091👍, 0💬
What’s a quick way to append a value to an array?
What’s a quick way to append a value to an array? arr[arr.length] = value; 2010-12-28, 4053👍, 0💬
How to create a confirmation box?
How to create a confirmation box? confirm("Do you really want to launch the missile?"); 2011-03-08, 4033👍, 0💬
Name the numeric constants representing max, min values
Name the numeric constants representing max, min values Number.MAX_VALUE Number.MIN_VALUE 2010-12-14, 4017👍, 0💬
What boolean operators does JavaScript support?
What boolean operators does JavaScript support? &&, || and ! 2010-09-28, 4006👍, 0💬
Popular Posts:
Explain all parts of a deployment diagram? Package: It logically groups element of a UML model. Node...
How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters? Unicode requires 1...
Why does malloc(0) return valid memory address? What's the use? malloc(0) does not return a non-NULL...
How do we generate strong names ? or What is use the of SN.EXE ? or How do we apply strong names to ...
If we inherit a class do the private variables also get inherited ? Yes, the variables are inherited...