在ECMA或vanilla中是否有直接函数/方法可用于将当前时间转换为Math.PI乘数,但具有最大Math.PI和最小0的序列?两个结果之间的时间差可以是任何秒。
答案 0 :(得分:-1)
这可能是您想要的吗?
var currDateTime = new Date();
var asString = "" + currDateTime.getHours() + currDateTime.getMinutes() + currDateTime.getSeconds() + currDateTime.getMilliseconds();
var inRadians = Math.sin(asString);
alert(inRadians);
纯香草溶液。您可以根据需要省略毫秒,使用cos等。