iT邦幫忙

鐵人檔案

2023 iThome 鐵人賽
回列表
自我挑戰組

TypeScript 從0開始 系列

為了發展自己的技能樹,並進行毅力挑戰,想從0開始學一項技術,並做出有記帳功能的side project。

參賽天數 21 天 | 共 21 篇文章 | 5 人訂閱 訂閱系列文 RSS系列文
DAY 11

D11 - Todo list with typescript

import { v4 as uuidV4 } from 'uuid' // npm i --save-dev @types/uuid type Todo =...

2023-09-13 ‧ 由 madisonwzlin 分享
DAY 12

D12 - Todo list with React

import React, { useState } from "react"; import TodoList from "./...

2023-09-14 ‧ 由 madisonwzlin 分享
DAY 13

D13 - Todo list with React (2)

import React, { useState, useRef, useEffect } from "react"; import Tod...

2023-09-15 ‧ 由 madisonwzlin 分享
DAY 14

D14 - 鐵人開賽兩週小心得

默默地也來到參加兩週的鐵人賽了,剛好這週是公司產品上線的日子,公務繁忙。回到家常常是擠出些時間來準備內容,就要匆匆發文。前幾天的文章還只剩下程式碼,自己看起來都...

2023-09-16 ‧ 由 madisonwzlin 分享
DAY 15

D15 - JS Array (1)

Reading material: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Refere...

2023-09-17 ‧ 由 madisonwzlin 分享
DAY 16

D16 - JS Array (2)

Manipulate array Array.prototype@@iterator let array = [0.1, 2, "345&quot...

2023-09-18 ‧ 由 madisonwzlin 分享
DAY 17

D17 - JS Array (3)

Array.prototype.fill() // fill(value) // fill(value, start) // fill(value, sta...

2023-09-19 ‧ 由 madisonwzlin 分享
DAY 18

D18 - 好想水水地過今天

今天預計要進行的內容,但此時此刻我已決定明天再看......- Array.prototype.flat()- Array.prototype.forEach(...

2023-09-20 ‧ 由 madisonwzlin 分享
DAY 19

D19 - JS Array (4)

Array.prototype.map() let array = [1.9, 2.1, 3.5] const rounded = array.map((...

2023-09-21 ‧ 由 madisonwzlin 分享
DAY 20

D20 - Between clock-in and clock-out

承前天所說的,我前半週達成的任務coverage都只有八成,上stage就各種出包回頭看就會覺得有些事情在local端就能避免,為何我當初做的時候沒有注意雖然不...

2023-09-22 ‧ 由 madisonwzlin 分享