1 | Every function statement gives rise to a Function object |
2 | Function objects are also created with the new operator: window.onload = new Function( "document.bgColor='white'" ); |
3 | Function objects may be anonymous |
4 | NB: Function arguments are passed by value |