我如何从数组值中删除小数点值?

问题描述 投票:0回答:1

我试图在图表中显示值,但我的数组值以小数点表示,我需要删除它们,有什么帮助吗?

this.grapcalories = this.calories [0] .calories;

值在此变量中。

angular highcharts ionic3
1个回答
0
投票

如果this.calories[0].calories是数字,则可以使用Math.round

this.grapcalories = Math.round(this.calories[0].calories);
© www.soinside.com 2019 - 2024. All rights reserved.