如何将当前日期时间转换为Math.PI?

时间:2018-06-28 07:31:46

标签: javascript algorithm

在ECMA或vanilla中是否有直接函数/方法可用于将当前时间转换为Math.PI乘数,但具有最大Math.PI和最小0的序列?两个结果之间的时间差可以是任何秒。

1 个答案:

答案 0 :(得分:-1)

这可能是您想要的吗?

var currDateTime = new Date();
var asString = "" + currDateTime.getHours() + currDateTime.getMinutes() + currDateTime.getSeconds() + currDateTime.getMilliseconds();
var inRadians = Math.sin(asString);
alert(inRadians);

纯香草溶液。您可以根据需要省略毫秒,使用cos等。