added new quiz app link

This commit is contained in:
Julia Muiruri
2022-07-18 13:36:41 +03:00
parent 023d3776d0
commit 98c46e1e73
270 changed files with 522 additions and 653 deletions

View File

@@ -4,7 +4,7 @@
> 涂鸦笔记作者:[Tomomi Imura](https://twitter.com/girlie_mac)
## 课前小测
[课前小测](https://calm-wave-0d1a32b03.1.azurestaticapps.net/quiz/13?loc=zh_cn)
[课前小测](https://ashy-river-0debb7803.1.azurestaticapps.net/quiz/13?loc=zh_cn)
这节课将会介绍 JavaScript 的基础知识,正是它为网页提供了可交互性。这节课中,你将学习数组和循环,它们会被用于操控数据。
@@ -119,7 +119,7 @@ for (let i = 0; i < iceCreamFlavors.length; i++) {
除了 for 和 while 循环,还有一些用于遍历数组的办法。比如 [forEach](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach)、[for-of](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Statements/for...of) 和 [map](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array/map)。用这些办法重写一下你的数组遍历代码。
## 课后小测
[Post-lecture quiz](https://calm-wave-0d1a32b03.1.azurestaticapps.net/quiz/14?loc=zh_cn)
[Post-lecture quiz](https://ashy-river-0debb7803.1.azurestaticapps.net/quiz/14?loc=zh_cn)
## 复习 & 自学