iT邦幫忙

harry xie 的所有留言 75

我推Day25 - 讓 TypeScript 炸裂你的腦袋!用映射型別打造超型別安全的解析器技巧

這裡的 Functor 就是指 functional programming 的 Functor 嗎? 有用到 map() 看起來特性有些相似

2024-10-18 ‧ 由 harry xie 留言

Day 10 - Compound Pattern

目前系列文看到這邊,都蠻清楚好懂,期待大大補充內容

2024-09-18 ‧ 由 harry xie 留言

Day20-非同步處理的方式-async/await

練習題解答 印出 Promise {<pending>},async 函式會回傳一個 Promise 物件,而 await 會等待 Promise...

2024-02-16 ‧ 由 harry xie 留言

Day9-箭頭函式與 this

練習題解答 輸出結果是 20 和 NaN。 因為物件 shape 是宣告在全域,所以在 shape 物件內的箭頭函式 perimeter,其 this 指向也是...

2024-02-15 ‧ 由 harry xie 留言

Day6-JavaScript Execution Context & var/let/const

練習題解答 分別印出 undefined 和 ReferenceError。 var 會有 hoisting,但未賦值之前使用它會有個初始值 undefined...

2024-02-15 ‧ 由 harry xie 留言

Day12-介紹 Currying、Partial Application

其他 Partial application 範例 重構前: const getApiURL = (apiHostname, resourceName, res...

2023-11-01 ‧ 由 harry xie 留言