초간단 비동기식 방법

1793 단어 방법
function queuedo(array,callback,next){

            var i = -1;

            this.loop=function(){

                i++;

                if(i==array.length){

                    next()

                } else{

                    callback(array[i],this.loop)

                }

            }

            this.loop();

        }

var arr2 = []
  // queuedo([
'1','2','3','1','2','3','1','2','3'],function(item,next){        // item      arr2.push(item);
setTimeout(
function() { next() }, 1000) },function(){
      // console.log(
'done') console.log(arr2) })

좋은 웹페이지 즐겨찾기