From 59db1e2fcf33fc1a698089c5f8924d28471b540d Mon Sep 17 00:00:00 2001 From: Sam Blowes Date: Fri, 20 Nov 2015 10:36:55 +0000 Subject: [PATCH] Updated the === operator example Updated the `===` operator example, so that the right and wrong examples have the same intent --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 1fd3020..a08c5ab 100644 --- a/Readme.md +++ b/Readme.md @@ -270,7 +270,7 @@ the triple equality operator as it will work just as expected. ```js var a = 0; -if (a !== '') { +if (a === '') { console.log('winning'); }