如果我的理解是正确的,那么JavaScript和ActionScript3都可以使用弧度。因此以下代码的预期输出将是:Math.PI//Expected3.141592653589793,got3.141592653589793Math.sin(0)//Expected0,got0Math.sin(Math.PI/2)//Expected1,got1Math.sin(Math.PI)//Expected0,got1.2246063538223773e-16Math.sin(Math.PI*3/2)//Expected-1,got-1Math.sin(Math.PI*2)//Expect