js关于函数和对象的概念
<script type="text/javascript">
function func1(fn){
if(typeof(fn)=="function"){
console.log("3----------function");
fn();
}else{
console.log(fn);
console.log("4----------other");
}
}
function func2(){
console.log("5-----func2");
return "123";
}
//1.返回的是函数的引用
console.log("1----------"+func2);
console.log(typeof(func2))
//2。返回的是函数执行的返回值
var log = func2();
console.log("2----------"+log);
//
func1(func2);
//new 的时候把func2当做一个构造函数执行,并且在new的时候立即执行构造方法体
func1(new func2());
console.log("===========================");
func1(2);
func1(new Array());
</script>