我正在获取变量“ v”
The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.
以下代码中的错误。
const result = temp.map(o => {
return Object.entries(o).reduce((r, [k, v]) => {
v = v * 100;
如何解决此问题?