Closed gus-ghielec closed 1 year ago
It is as if we forgot to add await
This is an issue with Javascript, the lambda function is not awaited in the forEach
. We should recommend using for..of
let nameList = ["Bob","Lisa","Gus","Tina"];
for(const name of nameList) {
await BrainPad.System.Println(name);
}
BP docs updated
This does not work as expected