JS——es5的严格模式(3)es5.0严格模式不让用的东西(arguments.callee和function.caller)
视频:https://ke.qq.com/course/231577?taid=3983676656552089"use strict" function test(){ console.log(arguments.callee); } test();callee,call...