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
functions
05fun_var_in_global_scope.js
05fun_var_in_global_scope.js
/** * Variable in global scope is global variable. * Each global variable is accessible inside function. * */ //global variables var a = 5; b = 13; //define function function fja() { console.log(a); console.log(b); } fja();
Reload page
Preview
W3C validation
Edit Code
JS Console