iT邦幫忙

AndrewYEE 的所有留言 50

Trick 2: 迷你四輪車演算法

原來是這樣,超讚!

2023-07-13 ‧ 由 AndrewYEE 留言

Day 9: Python資料視覺化程式庫「Seaborn」與帶有簡易設計感的直條圖

sns.set_style("whitegrid") sns.barplot(x=["espresso.130NTD",...

2023-07-10 ‧ 由 AndrewYEE 留言

達標好文 15. [JS] 什麼是原型鏈?

"Person.prototype 不是 Person 的原型,而是建構子函數執行後,所建立的新物件的原型;千萬不要把「建構子的 prototype...

2023-07-10 ‧ 由 AndrewYEE 留言

14. [JS] 深拷貝是什麼?如何實現?

想請教說,obj.constructor()意思是麼呢? 該直接使用new有差異嗎? const copy = new obj.constructor() co...

2023-07-10 ‧ 由 AndrewYEE 留言

Trick 0: 什麼都不會怎麼寫遊戲?

太強了 不過感覺也透漏年齡

2023-07-07 ‧ 由 AndrewYEE 留言

Trick 31: 不用引擎也能偽3D

請問你是用什麼工具或語言開發遊戲的呢?

2023-07-07 ‧ 由 AndrewYEE 留言

12. [JS] 為什麼 typeof new Array() === 'object'?

let gen = (function* idMaker(){ let i = 0 while(i++ < i) yield Symbol...

2023-07-07 ‧ 由 AndrewYEE 留言

06. [JS] 請你在旁邊的白板寫個快速排序演算法。

不使用遞迴而使用stack版本: function quickSort(array) { const stack = []; stack.p...

2023-07-04 ‧ 由 AndrewYEE 留言

05. [CSS] 元素選取器是如何運作的?

"反過來,如果將前述的 CSS 由右到左進行解析, CSSOM Tree 則可能會如下"之後的圖怪怪的,.f .c .d好像不見了

2023-07-03 ‧ 由 AndrewYEE 留言