revise zh-tw article & add lesson 7 missing file

This commit is contained in:
CRTao
2021-03-14 11:40:06 +08:00
parent cb23d62826
commit 50cf8a27bb
16 changed files with 37 additions and 16 deletions

View File

@@ -192,6 +192,6 @@ JavaScript 在處理資料結構時有許多種方法,有些場合為人詬病
試試看[這些 JavaScript 練習題](https://css-tricks.com/snippets/javascript/)。 你學到了什麼?
## 課題
## 作業
[練習資料型態](assignment.zh-tw.md)

View File

@@ -7,5 +7,5 @@
## 學習評量
| 作業內容 | 優良 | 普通 | 待改進 |
| -------- | ----------------------- ---------- | ---------------------------------- | ---------------------------------- |
| -------- | ---------------------------------- | ---------------------------------- | ---------------------------------- |
| | 使用六種資料型態並解釋用途以及用法 | 使用四種資料型態並解釋用途以及用法 | 使用兩種資料型態並解釋用途以及用法 |

View File

@@ -190,6 +190,6 @@ setTimeout(() => {
這很值得去閱讀[關於箭頭函式的資料](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions),它們越來越常被用在程式碼上。試著寫個函式,再改寫成箭頭語法。
## 課題
## 作業
[把玩函式](assignment.zh-tw.md)

View File

@@ -9,5 +9,5 @@
## 學習評量
| 作業內容 | 優良 | 普通 | 待改進 |
| -------- | ----------------------- ------------------ | -------------------------- | -------------- |
| -------- | ------------------------------------------ | -------------------------- | -------------- |
| | 建立兩個以上多樣參數輸入且功能豐富的函式。 | 建立一個有參數輸入的函式。 | 函式出現問題。 |

View File

@@ -171,6 +171,6 @@ if (firstNumber > secondNumber) {
瀏覽 Josh Comeau 所編制的[運算子查詢表](https://joshwcomeau.com/operator-lookup/)
## 課題
## 作業
[運算子](assignment.zh-tw.md)

View File

@@ -121,6 +121,6 @@ for (let i = 0; i < iceCreamFlavors.length; i++) {
在 JavaScript 中,矩陣有許多控制的方法,它們在處理資料上有很大的幫助。
[學習這些方法](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array),如 push、pop、slice 和 splice試著套用在你所創造的矩陣上。
## 課題
## 作業
[給矩陣的迴圈](assignment.zh-tw.md)