With this:
let (resultA, resultB, resultC) = (a(), b(), c())
What is the order of execution?
a(), thenb(), thenc(), then setresultA, then setresultB, then setresultC- undefined
Any reference or documentation on the expected behavior?
With this:
let (resultA, resultB, resultC) = (a(), b(), c())
What is the order of execution?
a(), then b(), then c(), then set resultA, then set resultB, then set resultCAny reference or documentation on the expected behavior?