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, 3650👍, 0💬
Popular Posts:
Describe different elements in Static Chart diagrams ? Package: - It logically groups element of a U...
Describe in detail Basic of SAO architecture of Remoting? For these types of questions interviewer e...
What is thread? A thread is an independent path of execution in a system.
What will be printed as the result of the operation below: main() { char *p1; char *p2; p1=(char *)m...
How can you implement MVC pattern in ASP.NET? The main purpose using MVC pattern is to decouple the ...