Skip to content

Commit

Permalink
updating links and clarifying definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
seanpat09 committed Jan 11, 2016
1 parent 429a254 commit c863717
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ To get updates, watch the repo and follow the [Twitter account](https://twitter
# Tips list

## #07 - Hoisting
> 2016-01-07 by [@squizzleflip](https://twitter.com/squizzleflip)
## #11 - [Hoisting](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var#var_hoisting)
> 2016-01-11 by [@squizzleflip](https://twitter.com/squizzleflip)
Understanding hoisting will help you organize your function scope. Just remember, variable declaration and function definition are hoisted to the top. Variable definition is not, even if you declare and define a variable on the same line.
Understanding hoisting will help you organize your function scope. Just remember, variable declaration and function definition are hoisted to the top. Variable definition is not, even if you declare and define a variable on the same line. Also, variable **declaration** is letting the system know that the variable exists while **definition** is assigning it a value.

```javascript
function doTheThing() {
Expand Down

0 comments on commit c863717

Please sign in to comment.