Skip to content

Commit

Permalink
Correção do Igual Estrito (===)
Browse files Browse the repository at this point in the history
De acordo com a [Issue](#74 (comment)) aberta por [olinad0](https://github.com/olinad0)
  • Loading branch information
euconectei committed Nov 18, 2015
1 parent 033392b commit 05bdc76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manual/js/operadores.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ <h2>De comparaçao</h2>
<dt>Igual estrito (===)</dt>
<dd>Esse operador é mais severo, só retorna verdadeiro se o valor e o tipo comparados forem iguais.
<pre class="lang-javascript prettyprint linenums">
3=='3' //false
3==3 //true
3==='3' //false
3===3 //true
</pre>
</dd>
<dt>Não igual estrito (!==)</dt>
Expand Down

0 comments on commit 05bdc76

Please sign in to comment.