Javascript Variable Types and Scope
We hold data in variables. Variable is used as a container for our data. Think about holding a name. Code: var name=”Poftut”; console.log(name); var is shortcut for variable. It is not a must but makes code readble. We can ommit the var while writing code name is the name of the variable when we need to access … Read more