嗨,我想知道有沒有更好的方法來做到這一點? condition_a比B更重要,B是比C更重要的是,等如何優化嵌套if?
var slot = condition_a
if (!slot) {
slot = condition_b
if (!slot) {
slot = condition_c
if (!slot) {
slot = condition_d
if (!slot) {
slot = condition_e
}
}
}
}
if (slot) {
//do something
}
這就是HomeWork? – CoderPi
沒有比這更好的方法了。無論你做什麼都是正確的方式。 –
不,我25歲。剛剛學習愛好。 – lock