Discuss / JavaScript / 迭代器

迭代器

Topic source

当下sunxyz

#1 Created at ... [Delete] [Delete and Lock User]
function createI(max){
   var j = 2;
    haseNext:function(){
        return j<max;
    },
   next:function(){

    }
}

  • 1

Reply