From 4cf6cd38c7e2efeaeb59db92d475aac204deb937 Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Wed, 17 Jan 2018 21:35:25 +0100 Subject: [PATCH] Remove quotes around NOT operator --- 1-js/02-first-steps/11-logical-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/11-logical-operators/article.md b/1-js/02-first-steps/11-logical-operators/article.md index 85e29d93..202f9e83 100644 --- a/1-js/02-first-steps/11-logical-operators/article.md +++ b/1-js/02-first-steps/11-logical-operators/article.md @@ -270,7 +270,7 @@ So it is recommended to use every construct for its purpose. Use `if` if we want ## ! (NOT) -The boolean NOT operator is represented with an exclamation sign `"!"`. +The boolean NOT operator is represented with an exclamation sign `!`. The syntax is pretty simple: