publishMoney和publishMoney2 分别为当期和去年同期,写一个脚本计算同比率
时间: 2024-02-20 22:01:29 浏览: 68
可以使用以下脚本计算同比率:
```
let publishMoney = 100; // 当期发布金额
let publishMoney2 = 80; // 去年同期发布金额
let yearOnYearRatio = ((publishMoney - publishMoney2) / publishMoney2) * 100;
console.log(`同比率为:${yearOnYearRatio}%`);
```
其中,`publishMoney`和`publishMoney2`分别为当期和去年同期的发布金额。脚本计算了同比率,并将结果输出到控制台中。
阅读全文