Practical, convenient and smart!
Save space and charge 3 devices wirelessly at once with @stmgoodsmy ChargeTree Swing.
Replenish power to a wireless phone, AirPods/AirPods Pro and Apple Watch (all series). Designed to work with AirPods in wireless charging case, and with most phone cases (non-metal) up to 5mm thick.
The STM Myth Dapper Wrapper accessory storage will keep your accessories readily available and incredibly organised while taking up minimal space in your bag.
If you simply desire a little more order and function in your daily routine and consider yourself an organisation fanatic-in-moderation, STM Must Stash is a must have.
STM Goods, available now at: https://shopee.com.my/shop/339869555/
Voucher Code: ELEMER10
Mechanic: 10% off min spend RM90
Validity: until 31 October 2021
#stmgoods #smarterthanmost #STMGoodsKOL #STMGoodsMYKOL #STMMY #Shopee #elementcase
「wrapper function」的推薦目錄:
wrapper function 在 91 敏捷開發之路 Facebook 的精選貼文
今天學到兩個有趣、有用的 javascript 知識點(原諒我這個後端工程師看到這種有趣的特性的興奮感)
1. 用個 hashmap 來取值並直接當物件的 key/property 取值用,如第一張圖的 queryParams.ref_data[refDataMap[cal_type]]
如果 cal_type 是 M, 那拿到的就是
queryParams.ref_data.market_dt
在 C# 之類的靜態語言就得用 reflection 搞的概念。
2. 用 spread operator 攤開某個 value 的內容。
如圖2的 ...cal_type_map[cal_type], 如果 cal_type 是 T, 就會把這個物件多一個 key/value pair (或是 property 的概念), 例如 can_trans : Y
這兩張圖也是為了 show 一下,我們把一堆重複的代碼抽成小而美的 function 來組合實現原本那一大坨的流程,並去除抽象來看重複的部份。
其實看最終代碼真的沒啥,但體會中間用極速開發的過程重構那一大段 N 個螢幕才放得進去的 code, 六個人輪流 pair 重構,不斷把之前的code整理、抽變數/方法/參數,看到判斷式也是重複的、處理也是重複的,不斷消掉 if/else 裡面的 block, 再消掉 if/elseif 的 condition, 那才是一個爽!
這是 coaching 這個團隊第三天的產出,這三天經歷了我人生的第一個 node.js, jest test, 產品代碼跟測試代碼都重構,第一個 mongoDB 的整合測試。
其實用對方式,對的人,有主管支持,團隊可以一起做決定,可以一起變強,可以打從心裡想改善的。
#程式碼片段分享已取得客戶主管同意
#javascript有趣!
#那堆precondition我也想用wrapper幹掉