合理利用三元表达式
有些场景我们需要针对不同的条件,给变量赋予不同的值,我们往往会采用下面这种方式:
const isGood = true; let feeling; if (isGood) { feeling = 'good' } else { feeling = 'bad' } console.log(`I feel ${feeling}`)
但是为什么不采用三元表达式呢?
const feeling = isGood ? 'good' : 'bad'
console.log(`I feel ${feeling}`)