- 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."
- Python編程自學手冊
- C程序設計簡明教程(第二版)
- 軟件項目管理(第2版)
- Mastering SVG
- 軟件測試工程師面試秘籍
- Learning Bayesian Models with R
- ASP.NET動態網頁設計教程(第三版)
- PostgreSQL Replication(Second Edition)
- C++寶典
- R語言:邁向大數據之路(加強版)
- Flask Web開發:基于Python的Web應用開發實戰(第2版)
- OpenCV Android Programming By Example
- Instant Apache Camel Messaging System
- Deep Learning for Natural Language Processing
- Android編程權威指南(第4版)