From 7115b3d615fa0d827ca647893b4994500a84a4c7 Mon Sep 17 00:00:00 2001 From: Sai vishnu Date: Thu, 31 Dec 2020 16:26:56 +0530 Subject: [PATCH] Replaced ` with ; in line 128. Just a typo fix. --- 2-js-basics/3-making-decisions/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-js-basics/3-making-decisions/README.md b/2-js-basics/3-making-decisions/README.md index 43c6debf..7a43f575 100644 --- a/2-js-basics/3-making-decisions/README.md +++ b/2-js-basics/3-making-decisions/README.md @@ -125,7 +125,7 @@ if (!condition) { `if...else` isn't the only way to express decision logic. You can also use something called a ternary operator. The syntax for it looks like this: ```javascript -let variable = condition ? : ` +let variable = condition ? : ; ``` Below is a more tangible example: