Skip to content

Commit

Permalink
Changed the order for better comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeaudru authored Sep 20, 2017
1 parent 345c201 commit f3d36d4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ I recommend always declaring your variables with ```const``` by default, and wit
<th><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/var#var_hoisting">Hoisting</a></th>
</tr>
<tr>
<th>var</th>
<td>Function</td>
<td>Yes</td>
<td>Yes</td>
<th>const</th>
<td>Block</td>
<td>No</td>
<td>Yes</td>
<td>No</td>
</tr>
<tr>
<th>let</th>
Expand All @@ -119,12 +119,12 @@ I recommend always declaring your variables with ```const``` by default, and wit
<td>Yes</td>
<td>No</td>
</tr>
<tr>
<th>const</th>
<td>Block</td>
<td>No</td>
<tr>
<th>var</th>
<td>Function</td>
<td>Yes</td>
<td>Yes</td>
<td>Yes</td>
<td>No</td>
</tr>
</table>

Expand Down

0 comments on commit f3d36d4

Please sign in to comment.