function fn2(a){ return [1,2,3,"hello"];}console.log(fn2(2)[3])//hello
这个2是混淆视线的,即使没有这个2.函数依然可以正常执行。
console.log(fn2()[3]) 就是求数组中的第四个值