ODD Numbers


 for(let i=0;i<=15;i++){

    if(i%2!=0){
        console.log(i);
    }
}

Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code