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 === operator?
What is === operator? ==== is strict equality operator, it returns true only when the two operands are having the same value without any type conversion. 2011-02-01, 3899👍, 0💬
What is the data types of variables of in JavaScript?
What is the data types of variables of in JavaScript? Number, String, Boolean, Function, Object, Null, Undefined. 2010-08-17, 3899👍, 0💬
How to comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2010-12-07, 3889👍, 0💬
How do you assign object properties?
How do you assign object properties? obj["age"] = 17 or obj.age = 17. 2010-12-21, 3774👍, 0💬
How to create a popup warning box?
How to create a popup warning box? alert('Warning: Please enter an integer between 0 and 100.'); 2011-03-01, 3553👍, 0💬
Popular Posts:
If we have two version of same assembly in GAC how do we make a choice ? OK first let’s try to under...
How To Set session.gc_maxlifetime Properly? - PHP Script Tips - Understanding and Using Sessions As ...
How To Fade Image Edges to Background Colors? - PSP Tutorials - Fading Images to Background Colors w...
How can I use tables to structure forms Small forms are sometimes placed within a TD element within ...
What will be printed as the result of the operation below: #define swap(a,b) a=a+b;b=a-b;a=a-b; void...