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:
What is "this" keyword?
What is "this" keyword? It refers to the current object. 2008-11-04, 5050👍, 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; 2008-10-28, 4794👍, 0💬
How do you assign object properties?
How do you assign object properties? obj["age"] = 17 or obj.age = 17. 2008-10-28, 4945👍, 0💬
How do you create a new object in JavaScript?
How do you create a new object in JavaScript? var obj = new Object(); or var obj = {}; 2008-10-21, 4857👍, 0💬
Name the numeric constants representing max, min values
Name the numeric constants representing max, min values Number.MAX_VALUE Number.MIN_VALUE 2008-10-14, 4467👍, 0💬
How to comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2008-10-14, 4617👍, 0💬
How to put a close window link on a page?
How to put a "close window" link on a page? <a href='javascript:window.close( )'class='mainnav'> Close </a> 2008-10-07, 4704👍, 0💬
What looping structures are there in JavaScript?
What looping structures are there in JavaScript? for, while, do-while loops, but no foreach. 2008-09-30, 4897👍, 0💬
How about 2+5+8?
How about 2+5+"8"? Since 2 and 5 are integers, this is number arithmetic, since 8 is a string, it’s concatenation, so 78 is the result. 2008-09-16, 5206👍, 0💬
What is a prompt box?
What is a prompt box? A prompt box allows the user to enter input by providing a text box. 2008-09-03, 5079👍, 0💬
Popular Posts:
What is DAR (Decision Analysis and Resolution) ? Decision Analysis and Resolution is to analyze poss...
What is difference between Association, Aggregation and Inheritance relationships? In object oriente...
How can you determine the size of an allocated portion of memory? You can't, really. free() can , bu...
What Happens to Indexes If You Drop a Table? - Oracle DBA FAQ - Managing Oracle Table Indexes If you...
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...