function scope are only accessible within the function not outside the function

PHOTO EMBED

Wed Sep 25 2024 22:34:29 GMT+0000 (Coordinated Universal Time)

Saved by @linezito

function x(){
    const strings = ["apple", "orange"]
    console.log(strings)
}

x()
content_copyCOPY