Skip to content

Commit

Permalink
Fixed typo with wrong information
Browse files Browse the repository at this point in the history
  • Loading branch information
felipenmoura committed Feb 19, 2016
1 parent ae972cb commit 0e75e34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 2014/10/arrow-functions-and-their-scope/index.html
Expand Up @@ -385,8 +385,8 @@ <h2 id="relevant-considerations">Relevant considerations</h2>
};
</code></pre>
<p>We may point some relevant considerations:</p>
<p><strong>- <code>arguments</code> works just as expected</strong></p>
<pre><code class="lang-javascript">console.log(arguments);
<p><strong>- <code>arguments</code> is not created/defined for your function</strong></p>
<pre><code class="lang-javascript">console.log(arguments); // not defined
</code></pre>
<p><strong>- <code>typeof</code> and <code>instanceof</code> work just fine as well</strong></p>
<pre><code class="lang-javascript">func instanceof Function; // true
Expand Down

0 comments on commit 0e75e34

Please sign in to comment.