![]() |
|
|
+ Search |
![]()
|
Apr 16th, 2000 08:43
Martin Honnen, Michael Davies,
There is no difference to other arguments/parameters
function f1 (fun) {
fun();
}
Here is a complete example:
function f1 (fun) {
fun();
}
function f2 () {
alert('JavaScript.FAQTs.com');
}
f1(f2)