Skip to content

Commit 05bdc76

Browse files
committed
Correção do Igual Estrito (===)
De acordo com a [Issue](#74 (comment)) aberta por [olinad0](https://github.com/olinad0)
1 parent 033392b commit 05bdc76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

manual/js/operadores.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ <h2>De comparaçao</h2>
7575
<dt>Igual estrito (===)</dt>
7676
<dd>Esse operador é mais severo, só retorna verdadeiro se o valor e o tipo comparados forem iguais.
7777
<pre class="lang-javascript prettyprint linenums">
78-
3=='3' //false
79-
3==3 //true
78+
3==='3' //false
79+
3===3 //true
8080
</pre>
8181
</dd>
8282
<dt>Não igual estrito (!==)</dt>

0 commit comments

Comments
 (0)