• 2022-06-06
    以下代码表示( )setInterval(() => { this.createColor(); }, 1000);
    A: 1秒钟后调用一次this.createColor()函数
    B: 每隔1秒钟调用一次this.createColor()函数
    C: 1000秒钟后调用一次this.createColor()函数
    D: 每隔1000秒钟调用一次this.createColor()函数