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
{{ message }}
This repository has been archived by the owner on Sep 26, 2020. It is now read-only.
example: eval("2 * 4 + 4") will correctly evaluate to 12 while eval("2 * (2 + 2) + (1 + 3)") or even eval(2 * (4) + (4)) will evaluate to 16, even though the two expressions should have the same result.
example:
eval("2 * 4 + 4")
will correctly evaluate to 12 whileeval("2 * (2 + 2) + (1 + 3)")
or eveneval(2 * (4) + (4))
will evaluate to 16, even though the two expressions should have the same result.The text was updated successfully, but these errors were encountered: