Js不用for,forEach,map等循環實現九九乘法表

var str='';function mt(p,n){    if(p<10){        if (n<=p){            str += n+'*'+p+'='+p*n+'\t';            n++;            mt(p,n);        }        else{            n=1;            p++;            str += '\n';            mt(p,n)        }    }else{        console.log(str);    }}mt(1,1);
相關文章
相關標籤/搜索