为什么会收到警告"expected an assignment or function call and instead saw an expression"
?
第一个例子
( this._mouseStarted ? this._mouseDrag( event ) : this._mouseUp( event ) );
第二个例子
( this.direction === "down" ? i.item[ 0 ] : i.item[ 0 ].nextSibling ) );
答案 0 :(得分:0)
警告就在那儿,因此您不会意外忘记通常会将该表达式的值分配给该变量(赋值的左侧) https://www.codecademy.com/en/forum_questions/505a2f774f0e7400020021ba