简体   繁体   中英

Eslint (no-unused-expressions)

I'm using ternary expression for player change, and it works fine. ESLint gives me this error - https://eslint.org/docs/rules/no-unused-expressions

activePlayer === 0 ? (activePlayer = 1) : (activePlayer = 0);

Could you help me make my code better?

activePlayer =  activePlayer === 0 ? 1 : 0 ;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM