> For the complete documentation index, see [llms.txt](https://ayugioh2003.gitbook.io/front2end/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ayugioh2003.gitbook.io/front2end/shi-zuo/cheng-shi-ma-pian-duan-sou-ji.md).

# 程式碼片段蒐集

看到一些覺得有趣的片段，就收集到這裡

function programming 的例子，也是在舉例清晰易懂特性的粒子

* [30 天精通 RxJS (02)： Functional Programming 基本觀念 - iT 邦幫忙::一起幫忙解決難題，拯救 IT 人的一天](http://ithelp.ithome.com.tw/articles/10186465)

```javascript
[9, 4].concat([8, 7]) // 合併陣列
      .sort()  // 排序
      .filter(x => x > 5) // 過濾出大於 5 的
```
