Heim > Fragen und Antworten > Hauptteil
var ccas = 12;
function ff() {
var a;
console.log(arguments.length);//0
console.log(arguments[0]);//undefine;
console.log(arguments.length > 0);//false
console.log(a = arguments.length > 0 && 1);//false
console.log(arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ccas);//12
var y = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ccas;//12
return function () {
console.log(arguments.length);
var ccas = 7;
console.log(y);
}.apply(null, arguments);
}
ff();
为什么y的值是12,求大神告知
给我你的怀抱2017-05-16 13:26:19
var y = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ccas;//12
这是一个三目运算,
arguments.length > 0 =》 false
arguments[0] !== undefined =》 false
所以就成了
=》
var y = false && false ? arguments[0] : ccas;
=》
var y = false ? arguments[0] : ccas;
不知道你是不理解三目运算还是?
值为true取值 : 前面的,false取值后面的。
所以y=12;
过去多啦不再A梦2017-05-16 13:26:19
因为 arguments[0]==undefined
且 var y = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ccas;//12
所以 y=12
如果你想问为什么不等于7
你需要学习一下闭包和基本类型和引用类型
参考链接:
http://www.cnblogs.com/chengg...
http://www.ruanyifeng.com/blo...
过去多啦不再A梦2017-05-16 13:26:19
var y = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ccas;//12
因为这里y
就是12