逗号在构造中的含义是什么(x = x || y,z)?

时间:2014-08-11 03:26:23

标签: javascript syntax

所以我找到了答案,但这还不足以扩展我的知识库。

我一直在搜索x = x || y, z在StackOverflow中的含义

我找到了这个。 What does the construct x = x || y mean?

但问题是, z是什么?

我经常看到这些表情 window.something = window.something || {}, jQuery

我已经知道如果在第一个参数上返回false,那么{}将被分配给something属性。

我的问题是,, jQuery是什么?

有人可以启发我并用这个非常重要的知识吸引我吗?

更新 2014年8月11日

所以我尝试进行测试。

var w = 0, x = 1,y = 2,z = 3;
var foo = w || x || y, z; //I see that z is a declared variable
console.log(foo); //outputs 1

和它一样。

var w = 0, x = 1,y = 2;
var z = function(){return console.log("this is z");}
var foo = w || x || y, z; //same as this
console.log(foo); //still outputs 1

另一个。

var w = 0, x = 1,y = 2;
var z = function(){return console.log("this is z");}
function foobar(){
this.bar = console.log(foo,z);
}(foo = w || x || y, z);
foobar(); //outputs 1 and string code of foobar

更改(foo = w || x || y, z)中的z值。

var w = 0, x = 1,y = 2;
var z = function(){return console.log("this is z");}
function foobar(){
this.bar = console.log(foo,z);
}(foo = w || x || y, z=4);
foobar(); //outputs 1 and 4

我假设在函数的( )之后将变量放在}内与声明一个新变量相同。

另一项测试。

var w = 0, x = 1,y = 2,z = 1;
function foobar(){
    var bar = 10,z=2;
        console.log(z);
}(foo = w || x || y, z=4);
console.log(foo,z); // Seems that foo is public and made an output
foobar(); // outputs the z = 2 inside and disregards the z = 4 from (..., z=4)
console.log(z); // It seems that z is 4 again after calling foobar

但是,在这种情况下。 Link to JSFiddle

//Self-Executing Anonymous Function: Part 2 (Public & Private)
(function( skillet, $, undefined ) {
    //Private Property
    var isHot = true;

    //Public Property
    skillet.ingredient = "Bacon Strips";

    //Public Method
    skillet.fry = function() {
        var oliveOil;

        addItem( "\t\n Butter \n\t" );
        addItem( oliveOil );
        console.log( "Frying " + skillet.ingredient );
    };

    //Private Method
    function addItem( item ) {
        if ( item !== undefined ) {
            console.log( "Adding " + $.trim(item) );
        }
    }    
}( window.skillet = window.skillet || {}, jQuery ));

//Public Properties
console.log( skillet.ingredient ); //Bacon Strips

//Public Methods
skillet.fry(); //Adding Butter & Fraying Bacon Strips

//Adding a Public Property
skillet.quantity = "12";
console.log( skillet.quantity ); //12

//Adding New Functionality to the Skillet
(function( skillet, $, undefined ) {
    //Private Property
    var amountOfGrease = "1 Cup";

    //Public Method
    skillet.toString = function() {
        console.log( skillet.quantity + " " + 
                     skillet.ingredient + " & " + 
                     amountOfGrease + " of Grease" );
        console.log( isHot ? "Hot" : "Cold" );
    };    
}( window.skillet = window.skillet || {}, jQuery ));

try {
    //12 Bacon Strips & 1 Cup of Grease
    skillet.toString(); //Throws Exception
} catch( e ) {
    console.log( e.message ); //isHot is not defined
}

似乎如果您删除, jQuery它只会记录" Bacon Strips" 请参阅此链接Link to another JSFiddle, jQuery已删除)

我真的没有这个..但为什么函数的, jQuery之后( )内的}算作代码完全运行的参考什么时候包含jQuery库?

从代码中删除$.trim,它似乎再次正常工作。但我仍然不知道这种引用是如何工作的。 Link to the JSFiddle without the , jQuery and $.trim

1 个答案:

答案 0 :(得分:6)

JavaScript中的Comma Operator评估操作数并返回最后一个(最右边)的值。通过JS Operator Precedence,将首先评估OR运算,然后进行赋值。

所以这个表达式x = x || y, z生效(x = (x || y)), z。 OR运算符将返回比较的布尔结果,或者对于非布尔类型,返回第一个操作数(如果它是真值),否则返回第二个操作数。赋值运算符的优先级也高于逗号运算符,因此x将被赋予OR返回的值。 z的值不会对OR操作或赋值产生任何影响。实际上,它将被最后评估,这意味着它本质上是一个单独的语句,对该表达式中的任何其他内容都没有影响。我没有看到以这种方式编写表达式的任何实际价值。