From a4fe23e9124a7c9e71679f8b4ef6bcd2143ffc51 Mon Sep 17 00:00:00 2001 From: Benjamin Benkert <29586970+bbenkert@users.noreply.github.com> Date: Tue, 30 Oct 2018 13:43:10 -0400 Subject: [PATCH] Fix typo line 49 (#23511) --- guide/english/javascript/falsy-values/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/falsy-values/index.md b/guide/english/javascript/falsy-values/index.md index 697abd434f..dff576c71d 100644 --- a/guide/english/javascript/falsy-values/index.md +++ b/guide/english/javascript/falsy-values/index.md @@ -46,7 +46,7 @@ if (![]) // <-- falsy, will also NOT run code in if-block ## Caveat -Be aware of the data type when evaluating a value in a Boolean context. If the data type of the value is meant to be a _number_, the truthy/falsy evalution can result in an unexpected outcome: +Be aware of the data type when evaluating a value in a Boolean context. If the data type of the value is meant to be a _number_, the truthy/falsy evaluation can result in an unexpected outcome: ```javascript const match = { teamA: 0, teamB: 1 } if (match.teamA)