Skip to content

Commit

Permalink
Function declaration typo and grammar fixes (#76)
Browse files Browse the repository at this point in the history
Function declaration typo and grammar fixes
  • Loading branch information
ganqqwerty authored Jun 2, 2019
2 parents f2f262c + c49bc46 commit 48f1f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ function bar () {
```
### Answer

The main difference is function `foo` is defined at `run-time` and is called function expression, whereas function `bar` is defined at parse time and is called function statement. To understand in better, let's see below code :
The main difference is that function `foo` is defined at `run-time` and is called a function expression, whereas function `bar` is defined at `parse time` and is called a function statement. To understand it better, let's take a look at the code below :

```javascript
// Run-Time function declaration
Expand Down

0 comments on commit 48f1f7e

Please sign in to comment.