diff --git a/glossary/Hoisting.md b/glossary/Hoisting.md new file mode 100644 index 000000000..f1cac9ac5 --- /dev/null +++ b/glossary/Hoisting.md @@ -0,0 +1,4 @@ +### Hoisting + +Hoisting is JavaScript's default behavior of adding declarations to memory during the compile phase. +Hoisting allow for JavaScript variables to be used before they have been declared.