我有一个名为的变量loopNum
,它作为控制台中的对象返回。其他变量按预期返回。谁能解释为什么会这样?谢谢
脚本
// stores how many carousels there are
var carouselNum = $('.carousella').length;
// stores the product of number of carousels times the increment value
var loopNum = $((carouselNum - 2) * -183);
console.log('loopNum = ' + loopNum);
console.log('carouselNum = ' + carouselNum);
安慰
loopNum = [object Object]