Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
javascript
advanced
constants
10const_local_scope.js
10const_local_scope.js
/** * Constant defined in local scope * is NOT accesed outside function */ function fja() { const MY_KONST = 5; } fja(); console.log(MY_KONST); //ReferenceError: MY_KONST is not defined
Reload page
Preview
W3C validation
Edit Code
JS Console