nested function

PHOTO EMBED

Tue Mar 07 2023 20:40:56 GMT+0000 (Coordinated Universal Time)

Saved by @bhushan03

const store=()=>{
    console.log("below we can describe a nested function")
    
    let s1=()=>{
        console.log("s1 is inside function ,and we can call this function inside this functon");
    }
    s1();
}


store();
content_copyCOPY

https://www.programiz.com/javascript/online-compiler/