Replace broken quiz links

This commit is contained in:
Tharindu Sathischandra
2020-11-15 09:37:35 +05:30
parent 8c97673379
commit 2201b79a70
22 changed files with 44 additions and 44 deletions

View File

@@ -4,7 +4,7 @@
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
## Pre-Lecture Quiz
[Pre-lecture quiz](2-js-basics/1-data-types/.github/pre-lecture-quiz.md)
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
This lesson covers the basics of JavaScript, the language that provides interactivity on the web.
@@ -185,7 +185,7 @@ Booleans can be only two values: `true` or `false`. Booleans can help make decis
JavaScript is notorious for its surprising ways of handling datatypes on occasion. Do a bit of research on these 'gotchas'. For example: case sensitivity can bite! Try this in your console: `let age = 1; let Age = 2; age == Age` (resolves `false` -- why?). What other gotchas can you find?
## Post-Lecture Quiz
[Post-lecture quiz](2-js-basics/1-data-types/.github/post-lecture-quiz.md)
[Post-lecture quiz](.github/post-lecture-quiz.md)
## Review & Self Study

View File

@@ -4,7 +4,7 @@
> Sketchnote by [Tomomi Imura](https://twitter.com/girlie_mac)
## Pre-Lecture Quiz
[Pre-lecture quiz](2-js-basics/2-functions-methods/.github/pre-lecture-quiz.md)
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
When we think about writing code, we always want to ensure our code is readable. While this sounds counterintuitive, code is read many more times than it's written. One core tool in a developer's toolbox to ensure maintainable code is the **function**.
@@ -181,7 +181,7 @@ You've now seen we have three ways to pass a function as a parameter and might b
Can you articulate in one sentence the difference between functions and methods? Give it a try!
## Post-Lecture Quiz
[Post-lecture quiz](2-js-basics/2-functions-methods/.github/post-lecture-quiz.md)
[Post-lecture quiz](.github/post-lecture-quiz.md)
## Review & Self Study

View File

@@ -5,7 +5,7 @@
##
Pre-Lecture Quiz
[Pre-lecture quiz](2-js-basics/3-making-decisions/.github/pre-lecture-quiz.md)
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
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
@@ -162,7 +162,7 @@ Create a program that is written first with logical operators, and then rewrite
##
Post-Lecture Quiz
[Post-lecture quiz](2-js-basics/3-making-decisions/.github/post-lecture-quiz.md)
[Post-lecture quiz](.github/post-lecture-quiz.md)
## Review & Self Study

View File

@@ -5,7 +5,7 @@
##
Pre-Lecture Quiz
[Pre-lecture quiz](2-js-basics/4-arrays-loops/.github/pre-lecture-quiz.md)
[Pre-lecture quiz](.github/pre-lecture-quiz.md)
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.
@@ -114,7 +114,7 @@ There are other ways of looping over arrays other than for and while loops. Ther
##
Post-Lecture Quiz
[Post-lecture quiz](2-js-basics/4-arrays-loops/.github/post-lecture-quiz.md)
[Post-lecture quiz](.github/post-lecture-quiz.md)
## Review & Self Study