From ef1c1fbfe7781b059f629fe13af36c24c18a3d3c Mon Sep 17 00:00:00 2001 From: Michael Chu Date: Tue, 26 Feb 2019 22:32:12 -0700 Subject: [PATCH] use strict equality --- step1-06/exercise/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/step1-06/exercise/README.md b/step1-06/exercise/README.md index 3a86cd9..165dc83 100644 --- a/step1-06/exercise/README.md +++ b/step1-06/exercise/README.md @@ -3,7 +3,7 @@ ### TodoFooter 1. Use the provided `itemCount` value drive the number of items left. -2. Use a ternary operator to print `item` vs `items` based on if `itemCount == 1` +2. Use a ternary operator to print `item` vs `items` based on if `itemCount === 1` ### TodoListItem