vo in function context
function 的执行上下文 -- vo 不可以直接访问。他又另外的名字叫 活动对象(AO)。
函数的 AO 当进入 EC 时创建。默认属性是 argumentgs,值是 Arguments 对象。
Arguments 对象包含 三个属性。
callee: 当前调用对象
length: 实际传入的参数个数
- properties-indexes (integer, converted to string) which values are the values of function’s arguments (from left to right in the list of arguments). Quantity of these properties-indexes ==arguments.length. Values of properties-indexes of the arguments object and present (really passed) formal parameters are shared.