为什么在使用console.log()打印出函数内的字符串时,它会复制输出结果?

时间:2014-06-19 11:22:39

标签: javascript

当声明以下功能时,我收到两次输出

  var orangeCost = function (orange) {
        var price = orange * 5
        console.log(price);
        console.log(" is the price")
    }

        orangeCost(5)

0 个答案:

没有答案