https://jsfiddle.net/648vpa40/
我的代码如下。
我想做的是仅在数组btc_price
发生变化时绘制图片。
为此,我添加了这部分:
function draw() {
console.log("draw picture");
print_chart(btc_price);
}
if (a != b) {
draw();
} else {
console.log("nothing to do");
}
其中a和b是在2个不同的if中获得的btc_price的长度。 但它从来没有帮助过我。 我的代码出了什么问题?