前端学习笔记202310学习笔记第一百壹拾天-函数参数默认值&递归&预编译流程&原理&现象&按时全局变量之23
console.log(a,b)
function a(){}
var b=function(){}
// GO{
// a:undefined---->function a(){}
// b:a:undefined
//}
运行结果
![]()
console.log(a,b)
function a(){}
var b=function(){}
// GO{
// a:undefined---->function a(){}
// b:a:undefined
//}
运行结果
![]()