customTimelineExpectedAmount

customTimelineExpectedAmount

我有2个具有不同值的变量

{{ timelineExpectedAmount }} //1.996.626,32




{{ customTimelineExpectedAmount }} //6.104,77


我想知道如何计算customTimelineExpectedAmounttimelineExpectedAmount的百分比。

我尝试了此操作:{{ timelineExpectedAmount / 100 * customTimelineExpectedAmount }}但没有用。

有什么提示吗?预期结果是0.30%

最佳答案

确实更多是数学问题...



var perc = 6104.77 / 1996626.32 * 100;

console.log(perc); // 0.3057542585134308







或者,在您的情况下:

{{ customTimelineExpectedAmount / timelineExpectedAmount * 100 }}




您可能要round the result

09-18 08:53