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 a function using function constructor?
How to create a function using function constructor?
✍: Guest
The following example illustrates this.
It creates a function called square with argument x and returns x multiplied by itself.
var square = new Function ("x","return x*x");
2011-08-16, 4141👍, 0💬
Popular Posts:
Which bit wise operator is suitable for checking whether a particular bit is on or off? The bitwise ...
What is the main difference between a Vector and an ArrayList? Java Vector class is internally synch...
How to create a thread in a program? You have two ways to do so. First, making your class "extends" ...
Does .NET support UNICODE and how do you know it supports? Yes .NET definitely supports UNICODE. Try...
What is the difference between CALL_FORM, NEW_FORM and OPEN_FORM? CALL_FORM: start a new form and pa...