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
I'm not sure if this has been reported before but there is an error with the example in the motivation section.
The statement return result; is going to fail with a ReferenceError because result is scoped to the try block and referencing it outside of it will cause an error.
The text was updated successfully, but these errors were encountered:
I'm not sure if this has been reported before but there is an error with the example in the motivation section.
The statement
return result;
is going to fail with aReferenceError
becauseresult
is scoped to thetry
block and referencing it outside of it will cause an error.The text was updated successfully, but these errors were encountered: