From 7115b3d615fa0d827ca647893b4994500a84a4c7 Mon Sep 17 00:00:00 2001 From: Sai vishnu Date: Thu, 31 Dec 2020 16:26:56 +0530 Subject: [PATCH 1/2] 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: From 6ae0cf7888ac9ec6793b09d68bd196eb11683bf8 Mon Sep 17 00:00:00 2001 From: saivishnu725 Date: Thu, 31 Dec 2020 20:58:51 +0530 Subject: [PATCH 2/2] Removed ` in line 128 --- 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 7a43f575..3aa7c649 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: