From 05bdc766180e42161b9fdcb854a846b5d0780065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fran=C3=A7a?= Date: Wed, 18 Nov 2015 08:05:24 -0200 Subject: [PATCH] =?UTF-8?q?Corre=C3=A7=C3=A3o=20do=20Igual=20Estrito=20(?= =?UTF-8?q?=3D=3D=3D)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit De acordo com a [Issue](https://github.com/tableless/iniciantes/issues/74#issuecomment-157571608) aberta por [olinad0](https://github.com/olinad0) --- manual/js/operadores.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/js/operadores.html b/manual/js/operadores.html index 2a4b432..b0b330f 100644 --- a/manual/js/operadores.html +++ b/manual/js/operadores.html @@ -75,8 +75,8 @@

De comparaçao

Igual estrito (===)
Esse operador é mais severo, só retorna verdadeiro se o valor e o tipo comparados forem iguais.
-3=='3' //false
-3==3 //true
+3==='3' //false
+3===3 //true
 		
Não igual estrito (!==)