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
Hello. there is an error in the exemple of use of reduce() in Array. [1,2,3,4,5].reduce( (acc,val) => prev + val ); << 15
I think it's better with [1,2,3,4,5].reduce( (acc,val) => acc + val ); << 15
The text was updated successfully, but these errors were encountered:
Sorry, both your issues got missed! thanks for reporting them. I think you're right, this will get fixed in a future update and I'll leave this issue open until it is fixed.
Hello. there is an error in the exemple of use of reduce() in Array.
[1,2,3,4,5].reduce( (acc,val) => prev + val ); << 15
I think it's better with
[1,2,3,4,5].reduce( (acc,val) => acc + val ); << 15
The text was updated successfully, but these errors were encountered: