I have the following code:
for await (const ele of offCycles) {
if ((await MlQueueModel.find({ uuid: ele.uuid })).length !== 0) {
continue;
}
<do something>
}
Is it possible to use a continue inside a for await loop ? I received the following error: Unexpected use of continue statement.eslintno-continue
I would like to continue the loop when the condition is true