标签: javascript
当声明以下功能时,我收到两次输出
var orangeCost = function (orange) { var price = orange * 5 console.log(price); console.log(" is the price") } orangeCost(5)