owned this note
owned this note
Published
Linked with GitHub
---
tags: JS 直播班 - 2022 秋季班
---
# 🏅 Day 20 - 函式與陣列物件整合運用
綜合前幾天函式觀念以及陣列物件相關操作,回答下方問題。
問題
---
依照註解敘述,完成下方程式碼(只需要補上 `...` 的部分,其餘不要更動)
```javascript=
let courses = [
{
title: 'Javascript',
members: 400,
id: 1,
isStarted: true,
isSoldout: true,
tasks: ['主線任務', '每日任務']
}
];
let newCourse = {
title: 'Vue3',
members: 300,
id: 2,
isStarted: false,
isSoldout: true,
tasks: ['主線任務', '每日任務']
};
// 1. 請將 courses 陣列中 id 為 1 的物件,tasks 陣列新增一筆資料為 '每日刷題'。
// 2. 請完成下方函式,將物件做為參數,判斷當課程中的 isSoldout 屬性為 true 時,
// 就將此物件新增到 courses 陣列中,並回傳 courses 陣列的長度
// (只需要補上 ... 的部分,其餘不要更動)
function addCourse(courseObj) {
if(...) {
courses....;
return ...;
console.log('新增成功');
} else {
console.log('無法新增');
return ...;
}
return;
}
let coursesLength = addCourse(newCourse);
// 3. 完成上方程式碼後,選出正確敘述
// 選項:
// (1) 最後程式碼會印出 '新增成功',而變數 coursesLength 的值會變為 2
// (2) 最後程式碼不會印出任何字串
// (3) 如果 newCourse 的 isSoldout 屬性值為 false 時,執行 addCourse(newCourse) 將不會印出任何字串,也不會回傳 courses 陣列的長度
```
## 回報流程
將答案寫在 CodePen 並複製 CodePen 連結貼至底下回報就算完成了喔!
解答位置請參考下圖(需打開程式碼的部分觀看)

<!-- 解答:
```javascript=
let courses = [
{
title: 'Javascript',
members: 400,
id: 1,
isStarted: true,
isSoldout: true,
tasks: ['主線任務', '每日任務']
}
];
let newCourse = {
title: 'Vue3',
members: 300,
id: 2,
isStarted: false,
isSoldout: true,
tasks: ['主線任務', '每日任務']
};
// 1.
courses[0].tasks.push('每日刷題');
// 2.
function addCourse(courseObj) {
if(courseObj.isSoldout) {
courses.push(courseObj);
return courses.length;
console.log('新增成功');
} else {
console.log('無法新增');
return courses.length;
}
return;
}
let coursesLength = addCourse(newCourse);
// 3. 完成上方程式碼後,選出正確敘述
// 答案:(2)
```
-->
回報區
---
| Discord | CodePen / 答案 |
|:----------------:|:----------------------------------------------------------------------------:|
| masterYan#2480 | [Codepen](https://codepen.io/htzwgoqt-the-looper/pen/BaVNrJv?editors=0010)|
| CloThEs#7837 | [Codepen](https://codepen.io/CloThEsZ/pen/RwJPago) |
| YC#2522 | [CodePen](https://codepen.io/YCLu/pen/ZERzXoQ) |
| Amberhh#2465 | [codepen](https://codepen.io/Amberhh/pen/VwdLjaz?editors=0011) |
| Jenny真#7532 | [CodePen](https://codepen.io/wei-chen-wu/pen/PoaqNxE?editors=0010) |
| Ayre#0016 | [Codepen](https://codepen.io/yichunlin09/pen/mdKJEPX?editors=0010) |
| hsiung阿熊#4079 | [Codepen](https://codepen.io/hsiungchi/pen/bGKdpPx) |
| RJRS#9430 | [CodePen](https://codepen.io/RJRS/pen/abKONgd) |
| 出事了阿伯#9923 | [CodePen](https://codepen.io/BradpittLai/pen/NWzqrGe?editors=1010) |
| AuroraC#6539 | [codepen](https://codepen.io/AuroraC/pen/YzvXWGE?editors=1012) |
| albee#9121 | [Codepen](https://codepen.io/albee-chang/pen/MWXweJY?editors=1112) |
| kenki100#0068 | [Codepen](https://codepen.io/ken100/pen/PoaqzzB) |
| Clara#1275 | [Codepen](https://codepen.io/bsupixqu/pen/wvXaWWQ) |
| Loran#1105 | [Codepen](https://codepen.io/loranlin/pen/WNyvxwP?editors=1011) |
| 無名#6427 | [Codepen](https://codepen.io/Nomoney/pen/GRGJqvB?editors=0011) |
| 薯餅#3581 | [Codepen](https://codepen.io/ColdingPoTaTo/pen/poKJbez) |
| 威爾#1694 | [CodePen](https://codepen.io/WILL_Wu/pen/PoaqzJy) |
| yumy#1940 | [CodePen](https://codepen.io/yumy_yamg/pen/poKJbav) |
| Ron Liang#7277 | [CodePen](https://codepen.io/ron-go/pen/RwJPRMB) |
| YI#0863 | [CodePen](https://codepen.io/YI0305/pen/wvXaWjZ?editors=0012) |
| Tami#6742 | [CodePen](https://codepen.io/wqsdqbjn-the-vuer/pen/XWYbKPp) |
| Rice#8043 | [CodePen](https://codepen.io/riecball/pen/KKepMrp?editors=0011) |
| hungya#0773 | [CodePen](https://codepen.io/hungya777/pen/JjZdKpJ?editors=0011) |
| jackson204#6363 | [CodePen](https://codepen.io/jackson204/pen/BaVNzve?editors=1111) |
| christina#6185 | [Codepen](https://codepen.io/chrisc0210/pen/OJEVXdG) |
| yoshidc#0455 | [CodePen](https://codepen.io/yoshiyyc/pen/KKepMyP) |
| RyanTsai#8906 | [CodePen](https://codepen.io/linlaose/pen/PoaqzyV) |
| 芮綺#5224 | [CodePen](https://codepen.io/zhan70/pen/mdKJEvQ?editors=0011) |
| 君Jyun#0147 | [codepen](https://codepen.io/Okaybeok/pen/gOKprEo?editors=0011) |
| 楓之聲#6945 | [Codepen](https://codepen.io/sshane258/pen/vYrOXEv) |
| hannahTW#2224 | [Codepen](https://codepen.io/hangineer/pen/ZERGOgL?editors=0011) |
| 心幻羽#0056 | [Codepen](https://codepen.io/linglingsyu/pen/BaVNLoB?editors=1111) |
| Data#9297 | [Codepen](https://codepen.io/kirakira72/pen/abKOZEJ) |
| Lucie#3831 | [Codepen](https://codepen.io/bisespei/pen/vYrOKxd) |
| m_m#5493 | [CodePen](https://codepen.io/minnn7716/pen/poKJEJE) |
| shinyhung#3825 | [CodePen](https://codepen.io/sean_1215/pen/NWzqRKP?editors=0011) |
| Cookie SSS#6991 | [CodePen](https://codepen.io/sqhjikpa-the-selector/pen/rNKVMLG?editors=1012) |
| yawun#0042 | [CodePen](https://codepen.io/monicalin/pen/RwJPRjJ) |
| VT#0895 | [Codepen](https://codepen.io/vt197/pen/XWYbjde) |
| JustinLiu#9699 | [CodePen](https://codepen.io/justin0227/pen/NWzqRpN?editors=0011) |
| kuku#3118 | [Codepen](https://codepen.io/mengting-ku/pen/RwJPGQX) |
| Benson#6763 | [Codepen](https://codepen.io/kumashow/pen/dyKopLx) |
| 圈圈#4060 | [Codepen](https://codepen.io/wjejfczn-the-bold/pen/XWYbjqq) |
| 母湯#7211 | [Codepen](https://codepen.io/tommyshih77/pen/rNKVWNq?editors=0011) |
| 黑白兔#0684 | [Codepen](https://codepen.io/johnny329/pen/JjZdbdq) |
| Rena#6249 | [Codepen](https://codepen.io/aureate0116/pen/wvXaoJr?editors=0011) |
| Ryan Chiang#6649 | [Codepen](https://codepen.io/ryanchiang/pen/ZERGBJV?editors=0012) |
| Greta#0837 | [CodePen](https://codepen.io/gretali/pen/QWxbGMr) |
| Chung#5951 | [CodePen](https://codepen.io/yuju16/pen/MWXwbQZ?editors=0010) |
| 法希娜#3206 | [CodePen](https://codepen.io/yiiserpf-the-encoder/pen/QWxbKdE?editors=1011) |
| Rr#2215 | [Codepen](https://codepen.io/rufangcheng/pen/qBKdNzo) |
| Winnie#1306 | [Codepen](https://codepen.io/WinnieWuWinnie/pen/jOKPVpv?editors=0010) |
| William Lai#0196 | [Codepen](https://codepen.io/lai-weihan/pen/WNyvoLg) |
| jimmyFang#9575 | [Codepen](https://codepen.io/pohxiqqo/pen/XWYbpbb?editors=0010) |
|SASIMI#5099|[codepen](https://codepen.io/sashimi1327/pen/WNJYpqJ)|
|Judy Wei#6103|[Codepen](https://codepen.io/Judy0718/pen/jOKPywj)|
|柔柔#1716|[Codepen](https://codepen.io/rouchen/pen/bGKdgMy?editors=1011)|
|魚子醬#5220|[CodePen](https://codepen.io/haihsuan/pen/bGKdgOX)|
|IreneY#0086|[codepen](https://codepen.io/HalfPlannedJourney/pen/WNyvpev)|
|Yiru#0236|[Codepen](https://codepen.io/yiru94/pen/oNyXzLa?editors=0012)|
|Kimi #9564|[Codepen](https://codepen.io/kimihu91/pen/ExRxryx)|
|勁辣雞腿寶#5817|[Codepen](https://codepen.io/orz311013/pen/YzvXGrM?editors=1011)|
|PayRoom#8328|[CodePen](https://codepen.io/water38198/pen/eYKNvmW)|
|Yuna Huang#2692|[CodePen](https://codepen.io/Yuna1002/pen/ZERGLwp?editors=0011)|
|mandylai#4055|[CodePen](https://codepen.io/mandy-lai-2/pen/mdKJOdV)|
|大衛#4869|[CodePen](https://codepen.io/exnsrpjc/pen/rNKVyNm)|
|我是泇吟#5189|[CodePen](https://codepen.io/kljuqbxs/pen/VwdLpjV)|
|k.sin#3115|[CodePen](https://codepen.io/sin588/pen/gOKpmWY?editors=0011)|
|雷雷#7844|[CodePen](https://codepen.io/lei-yi-jie/pen/PoaqpbY?editors=0010)|
|教練#6451|[CodePen](https://codepen.io/monkeybear721/pen/NWzqdyV?editors=0010)|
|黑松胖#4836|[Codepen](https://codepen.io/yi-chien-hsieh/pen/poKJeKr?editors=0012)|
|萱仔#0781|[Codepen](https://codepen.io/ting-hsuan/pen/dyKoWOo?editors=0010)|
|Potatolee#7749|[Codepen](https://codepen.io/potatoleee/pen/poKvKJK?editors=0011)|
| cbs#9007 |[Codepen](https://codepen.io/wasdjk/pen/GRGJmjj)|
|阿風#6890|[Codepen](https://codepen.io/Afonguwu/pen/VwdLbQj?editors=0010)|
|Hilda#7085|[Codepen](https://codepen.io/vwquikad-the-vuer/pen/poKJPZQ)|
|予予#9627|[Codepen](https://codepen.io/kiqzcraa/pen/YzvXVgZ?editors=0012)|
|Hironaka#7367|[Codepen](https://codepen.io/Hironaka0815/pen/zYaGdGE?editors=0010)|
|健育#5748|[Codepen](https://codepen.io/c1317156/pen/rNKVzqv?editors=0012)|
|RayChen#6088|[Codepen](https://codepen.io/raychen1996/pen/dyKoVRY)|
|Paul#7426|[CodePen](https://codepen.io/paul-1997/pen/LYrVzjE?editors=0011)|
|JackC#0411|[Codepen](https://codepen.io/key0329/pen/xxzGXzx)|
|Sentiments#4883|[codepen](https://codepen.io/Sentiments/pen/yLENPjN?editors=0010)|
|jacky010080#0880|[CodePen](https://codepen.io/Yen-Jung-Chen/pen/LYrVdWy?editors=0012)|
|yen#5757|[CodePen](https://codepen.io/TZU-HUANG-YEN/pen/oNdPgqY?editors=0011)|
|WEI_RIO#9342|[Codepen](https://codepen.io/wei_wu/pen/ZERGoWe?editors=0011)|
| 黃士桓#7654 | [codePen](https://codepen.io/shr-huan-huang/pen/YzvXLdm) |
|yaru#6308|[codepen](https://codepen.io/lszaietc/pen/LYrVmeX?editors=0011)|
|Mylène#2481|[Codepen](https://codepen.io/hamajibashi/pen/ZERGRBM)|
| 小白#2406 | [CodePen](https://codepen.io/gracewhite/pen/vYrOvrw) |
| 末次#0236 | [CodePen](https://codepen.io/yunjulee/pen/NWzqoxg) |
| 狸貓#5863 | [CodePen](https://codepen.io/tanuki320/pen/ExRjrXJ?editors=0010) |
| yoyo#1003 | [CodePen](https://codepen.io/crpbugqy-the-typescripter/pen/ZERGwjw) |
| 肉桂卷#0625 | [CodePen](https://codepen.io/ginnlee/pen/VwdLzoZ?editors=0011) |
| 安o#2448 | [codePen](https://codepen.io/JzhenAn/pen/xxzGBVV) |
|sophiee#7015|[Codepen](https://codepen.io/sophiee2727/pen/BaVNbzV?editors=1012)|
|FiReBrO#0557|[Codepen](https://codepen.io/firebro42/pen/vYrOMYz?editors=1011)|
|王懷英#7271|[Codepen](https://codepen.io/huaiying/pen/LYrVvVd)|
|威0#6919|[Codepen](https://codepen.io/n0918679182/pen/BaVNEog?editors=0012)|
|Eileen#6454|[Codepen](https://codepen.io/Eileen-io/pen/XWYbwMo)|
|富#0389|[Codepen](https://codepen.io/spring40747/pen/YzvXbxy?editors=1112)|
|beta lin#1445|[CodePen](https://codepen.io/linbeta/pen/MWXwdjX)|
| azami#5986 |[CodePen](https://codepen.io/azami/pen/yLENdvB)|
| 蓁心#6229 |[CodePen](https://codepen.io/tlorfrnl-the-typescripter/pen/MWXwMLa?editors=0010)|
| kevin #6131 |[CodePen](https://codepen.io/xlqjezvc-the-encoder/pen/vYrNBMg?editors=0011)|
| charlottelee849#0366 |[CodePen](https://codepen.io/charlotte-lee/pen/abKvmOy?editors=0011)|
|YU#0618|[Codepen](https://codepen.io/yoken_/pen/gOKaLpa)|
|Awei#0720|[Codepen](https://codepen.io/Aweishi/pen/zYavoVg?editors=0010)|
|ling chang#1024|[Codepen](https://codepen.io/ling-chang/pen/vYrNyeN)|
|cotton#7163|[Codepen](https://codepen.io/cottonT/pen/wvXKeKm?editors=0010)|
|Chloe#5422|[Codepen](https://codepen.io/Ironchloe/pen/poKjraN?editors=0010)|
|Ringo#7583|[Codepen](https://codepen.io/pen/?editors=0010)|
|Jhen#4563|[Codepen](https://codepen.io/su-jhen/pen/ExRVwje)|
|mou#2215|[Codepen](https://codepen.io/shihchiehlan/pen/zYavZBz?editors=0011)|
|Shuo#1596|[Codepen](https://codepen.io/chiangchungshuo/pen/bGKVYdM)|
|Vera#5592|[Codepen](https://codepen.io/skvera/pen/qBKOpdV)|
|KC_8685#9343|[Codepen](https://codepen.io/cathy7411/pen/yLEYjJe)|
|艸良#2846|[Codepen](https://codepen.io/momoninainai/pen/PoaPeXo)|
|Peng#9811|[Codepen](https://codepen.io/peng-027/pen/wvXKjZM)|
|Hazel.#6020|[Codepen](https://codepen.io/Hazelhsieh/pen/LYrpmNe?editors=0011)|
| LHchien33#6232 |[Codepen](https://codepen.io/lin_chien/pen/zYavaqL?editors=0010)|
| shio#1414 |[Codepen](https://codepen.io/pen/?editors=1111)|
|竹輪#3335|[Codepen](https://codepen.io/chikuwa0120/pen/Vwdvowy)|
|bingsu#2362|[Codepen](https://codepen.io/pmyfr/pen/ExRVqaZ?editors=0010)|
|CofCat#9226|[Codepen](https://codepen.io/cofcat456/pen/OJEMqBv?editors=1012)|
|mei#8421|[Codepen](https://codepen.io/Shila-Chen/pen/PoaZvjq?editors=0011)|
|kancheng#3915|[CodePen](https://codepen.io/kancheng/pen/qBKZreo?editors=0110)|
|suihsilan#9485|[CodePen](https://codepen.io/suihsilan/pen/VwdaQaE?editors=0010)|
|軟綿綿 (๑•ᴗ•๑) ♡#3627|[CodePen](https://codepen.io/Connie-Chien/pen/YzvqOee?editors=0012)|
|三隻小貓#1905|[CodePen](https://codepen.io/bagelover/pen/oNyxaQV?editors=0011)|
|Azi Hsieh#2861|[CodePen](https://codepen.io/AziHsieh/pen/eYKZQzL)|
|Yisham#4902|[CodePen](https://codepen.io/gdjrehhw-the-animator/pen/WNyxOpE?editors=0011)|
|Tuhacrt#0008|[codepen](https://codepen.io/Tuhacrt/pen/LYrZoNO)|
|Cynthia1111#1822|[CodePen](https://codepen.io/Cynthia1111/pen/vYrKpxZ)|
|yuling#1634|[codepen](https://codepen.io/igzdflpu/pen/dyKpbRe)|
|Cream#3449|[codepen](https://codepen.io/frxdwbbi-the-sasster/pen/jOKMyQY?editors=0010)|
|PoWei#8484|[codepen](https://codepen.io/harrison-wei-lai/pen/RwJGVoB?editors=0011)|
|Nini Chen#5790|[codepen](https://codepen.io/ninistyle/pen/eYKdLjq?editors=0011)|
|Judy #7874|[CodePen](https://codepen.io/hsiaohan/pen/YzvGdBQ?editors=0011)|
|Silvialu#4521|[CodePen](https://codepen.io/Silvia091640/pen/NWzNqgr)|
|L0F0#8733|[CodePen](https://codepen.io/l0f0/pen/OJEbvgJ?editors=0011)|
|Lou#0085|[CodePen](https://codepen.io/Lusie_H/pen/dyKOagJ?editors=0012)|
|Mia小福#4473|[CodePen](https://codepen.io/a0950271/pen/mdKRLgR?editors=1112)|
|homer#1525|[CodePen](https://codepen.io/Buckhorn/pen/LYrZyKq)|
|Cliff#4606|[Codepen](https://codepen.io/Cliff_hex/pen/VwdpEEp?editors=0011)|
|阿蘇#8531|[Codepen](https://codepen.io/susu3131/pen/BaVZLbj?editors=0011)|
|yuchenye#6119|[Codepen](https://codepen.io/yuchen/pen/YzvrwJj)|
|meimei#9524|[Codepen](https://codepen.io/isnrudav/pen/rNKGYZE?editors=1011)|
|艾芮絲#6060|[Codepen](https://codepen.io/wangyingju/pen/GRGMxZq)|
|Baozi#2042|[Codepen](https://codepen.io/lillianyu/pen/poKpZLd)|
|pss940909#8650|[Codepen](https://codepen.io/pss940909/pen/mdKXJMj?editors=0011)|
|samger#0808|[Codepen](https://codepen.io/lee-wei-hong/pen/KKebELQ?editors=1111)|
|J_u_d_y#5993|[Codepen](https://codepen.io/J_u_d_y/pen/dyKLKrR?editors=1111)|