我对一个简单的if语句感到沮丧。我收到一个错误


  TypeError:未定义不是函数


我究竟做错了什么?

  if (typeof lCost !== "undefined")
     totalExpenses = +totalExpenses + +lCost.isFixed(2);

最佳答案

if( typeof lCost !== "undefined" )
{
totalExpenses  = +totalExpenses + +lCost.toFixed(2);
}


如果我没看错,isFixed不是内置函数

09-25 20:32