标签: javascript arrays console
在code1中,它按预期输出undefined。但是,code2输出数组已经将“hello”推入内部。我不明白为什么它没有按顺序运行代码。
function drawChart(chart) { console.log(chartData) //code1 var chartData = []; console.log(chartData) //code2 chartData.push("hello") }