Glossary 0.0 / 5 ? ComputingJavascriptAll LevelsAll boards Created by: dodo1818Created on: 18-01-19 11:28 var Keyword for declaring a variable that is function scoped 1 of 6 let Keyword for declaring a variable that is block scoped & can be assigned a new value 2 of 6 const Keyword for declaring a variable that is block scoped & cannot be reassigned to a new value 3 of 6 Scope Defines where variables and functions are accessible in a programme 4 of 6 Function Scope A type of scope where the variable statement is inside a FunctionDeclaration and as such can only be accessed inside that function 5 of 6 Block Scope A type of scope where the variable statement is only available within the block ({}) it was created 6 of 6
Comments
No comments have yet been made