Nested FOR loops

 for(let i=1;i<=4;i++){

    for(let j=1;j<=3;j++){
        console.log(i*j);
    }
}

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code