TypeError:Undefined不是简单if语句中的函数

时间:2014-05-07 13:29:45

标签: javascript

我对简单的if声明感到沮丧。我收到了错误

  

TypeError:Undefined不是函数

我做错了什么?

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

1 个答案:

答案 0 :(得分:3)

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

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