简体   繁体   中英

Conditionally perform or do not perform a wrapping if

I need a little help. How can I write this code more properly?

function myFunc(performCheck = true) {
  if (performCheck) {
    if (b === a) {
      mySecondMethod();
    }
  } else {
    mySecondMethod();
  }
}

You could take a single expression and check if not the first part or the second.

function myFunc(performCheck = true) {
    if (!performCheck || b === a)) mySecondMethod();
}
if (!performCheck || b === a) { secondMethod() }

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