- Hands-On Functional Programming with TypeScript
- Remo H. Jansen
- 201字
- 2021-07-02 14:03:08
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Mount the downloaded WebStorm-10*.dmg disk image file as another disk in your system."
A block of code is set as follows:
function find<T>(arr: T[], filter: (i: T) => boolean) {
return arr.filter(filter);
}
find(heroes, (h) => h.name === "Spiderman");
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
const valueOfThis = { name: "Anakin", surname: "Skywalker" };
const greet = person.greet.bind(valueOfThis);
greet.call(valueOfThis, "Mos espa", "Tatooine");
greet.apply(valueOfThis, ["Mos espa", "Tatooine"]);
// Hi, my name is Remo Jansen. I'm from Mos espa Tatooine.
Any command-line input or output is written as follows:
npm install ramda @types/ramda
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Select System info from the Administration panel."
- 密碼學原理與Java實現
- Python數據分析入門與實戰
- Java 9 Concurrency Cookbook(Second Edition)
- C/C++算法從菜鳥到達人
- Vue.js快跑:構建觸手可及的高性能Web應用
- SQL語言從入門到精通
- 表哥的Access入門:以Excel視角快速學習數據庫開發(第2版)
- The Complete Coding Interview Guide in Java
- Visual FoxPro程序設計習題集及實驗指導(第四版)
- 深度學習原理與PyTorch實戰(第2版)
- 創意UI Photoshop玩轉移動UI設計
- Django Design Patterns and Best Practices
- Python Deep Learning
- Hands-On Robotics Programming with C++
- Mastering Responsive Web Design