+ 3
math.hypot(x, y) (in Python)
returns sqrt(xÂČ+yÂČ), which is the hypotenuse (longest side of a triangle) of a square angled triangle.
x and y are expected to be the 2 shorter sides of a triangle.
Math.hypot should work same in ES6 like math.hypot works in Python.