const opposite = 2.5;
const hypotenuse = 5;
const angle_sin = opposite / hypotenuse;
const right_triangle_angle = Math.asin(angle_sin) * 180 / Math.PI;
console.log("Right Triangle Angle = " + right_triangle_angle);
/*
run:
Right Triangle Angle = 30.000000000000004
*/