BREAK POINT

 function one(){

    return 1;
}
function two(){
    return one()+one();
}
function three(){
    let ans= two()+one();
    console.log(ans);
}
three();



































Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code