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
Description: The psuedo code implementation provided in the latest specification https://tc39.es/ecma262/#sec-math.hypot returns NaN for the following evaluation: Math.hypot(NaN, Infinity), while the 2020 specification (and as a result, js engines) returns Infinity in any call to Math.hypot that includes Infinity as an argument.
The text was updated successfully, but these errors were encountered:
Description: The psuedo code implementation provided in the latest specification https://tc39.es/ecma262/#sec-math.hypot returns
NaN
for the following evaluation:Math.hypot(NaN, Infinity)
, while the 2020 specification (and as a result, js engines) returnsInfinity
in any call to Math.hypot that includesInfinity
as an argument.The text was updated successfully, but these errors were encountered: