From 63018abe1b443c23cf3f6a4e677abc98542690ab Mon Sep 17 00:00:00 2001 From: saivishnu725 <saivsihnu725@gmail.com> Date: Thu, 31 Dec 2020 18:42:41 +0530 Subject: [PATCH] Fixed Pre/Post Lecture Quix position --- 2-js-basics/3-making-decisions/README.md | 8 ++++++-- 2-js-basics/4-arrays-loops/README.md | 6 ++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/2-js-basics/3-making-decisions/README.md b/2-js-basics/3-making-decisions/README.md index 43c6debf..0b60fa16 100644 --- a/2-js-basics/3-making-decisions/README.md +++ b/2-js-basics/3-making-decisions/README.md @@ -3,8 +3,7 @@  > Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac) -## -Pre-Lecture Quiz +## Pre-Lecture Quiz [Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/11) Making decisions and controlling the order in which your code runs makes your code reusable and robust. This section covers the syntax for controlling data flow in JavaScript and its significance when used with Boolean data types @@ -160,8 +159,13 @@ if (firstNumber > secondNumber) { Create a program that is written first with logical operators, and then rewrite it using a ternary expression. What's your preferred syntax? +<<<<<<< HEAD ## Post-Lecture Quiz +======= +--- +## Post-Lecture Quiz +>>>>>>> f3df930... Fixed Post/Pre Lecture Quiz position. [Post-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/12) ## Review & Self Study diff --git a/2-js-basics/4-arrays-loops/README.md b/2-js-basics/4-arrays-loops/README.md index ebc4d75d..cdf7b6f6 100644 --- a/2-js-basics/4-arrays-loops/README.md +++ b/2-js-basics/4-arrays-loops/README.md @@ -3,8 +3,7 @@  > Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac) -## -Pre-Lecture Quiz +## Pre-Lecture Quiz [Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/13) This lesson covers the basics of JavaScript, the language that provides interactivity on the web. In this lesson, you'll learn about arrays and loops, which are used to manipulate data. @@ -112,8 +111,7 @@ for (let i = 0; i < iceCreamFlavors.length; i++) { There are other ways of looping over arrays other than for and while loops. There are [forEach](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach), [for-of](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of), and [map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map). Rewrite your array loop using one of these techniques. -## -Post-Lecture Quiz +## Post-Lecture Quiz [Pre-lecture quiz](https://nice-beach-0fe9e9d0f.azurestaticapps.net/quiz/14)