如果数组长度发生变化,如何执行.js

时间:2018-05-26 16:06:18

标签: javascript highcharts

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的长度。 但它从来没有帮助过我。 我的代码出了什么问题?

0 个答案:

没有答案