For loops out five arrays, how to call the function setIntervalForTime () and display it.

for(let i=0;i<this.collectionList.length;iPP){
    this.$post("", { token: this.token, Id: this.collectionList[i].Id }).then(res => {
    this.OpenTime = res.info
    this.setIntervalForTime()
    });
}

this.OpenTime = res.info
how to write the above code?
this.setIntervalForTime ()
how do I call it 5 times?

Aug.01,2021

does not understand what
setIntervalForTime is
is called directly five times, you have looped

Menu