You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
arr.forEach() is used a lot, however, if we switch to for (let i = 0; i < things.length; i++) {} or for (let thing of things) {} then users have greater control, like a hook being able to add/remove additional tasks mid-run. This would allow for more dynamic build options/tooling.
The text was updated successfully, but these errors were encountered:
arr.forEach()
is used a lot, however, if we switch tofor (let i = 0; i < things.length; i++) {}
orfor (let thing of things) {}
then users have greater control, like a hook being able to add/remove additional tasks mid-run. This would allow for more dynamic build options/tooling.The text was updated successfully, but these errors were encountered: