Guitarktp / js-variable-practice1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Variable Declaration

What is the difference between var, let, and const? Write a short code snippet to demonstrate the difference in scoping between var and let.
You can use any variables or any from inventory 😺

For Scope copy templates below:

// Block Scope
{

console.log()
}
console.log()

// Function Scope
function my_stock(){

console.log()
}

console.log()

About


Languages

Language:HTML 98.7%Language:JavaScript 1.3%