JS函数声明和函数表达式的区别

// 函数声明 function funDeclaration(type){ return type "Declaration"; } // 函数表达式 var funExpression = function(type){ return type "Expression"; } 1.Javascr
posted @ 2020-04-04 21:29  骑着小毛驴1688  阅读(598)  评论(0编辑  收藏  举报