- JavaScript Unlocked
- Dmitry Sheiko
- 208字
- 2021-07-30 09:56:59
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
var res = [ 1, 2, 3, 4 ].filter(function( v ){ return v > 2; }) console.log( res ); // [3,4]
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
/**
* @param {Function} [cb] - callback
*/
function fn( cb ) {
cb && cb();
};
Any command-line input or output is written as follows:
npm install fs-walk cli-color
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "As soon as Enter is pressed, the console outputs I'm running."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- C語言程序設計案例教程
- Advanced Quantitative Finance with C++
- 算法基礎:打開程序設計之門
- ArcGIS By Example
- Jupyter數據科學實戰
- Swift 4從零到精通iOS開發
- 從Power BI到Analysis Services:企業級數據分析實戰
- Web程序設計:ASP.NET(第2版)
- 監控的藝術:云原生時代的監控框架
- 原型設計:打造成功產品的實用方法及實踐
- Learning Shiny
- Java 7 Concurrency Cookbook
- 第五空間戰略:大國間的網絡博弈
- JavaScript設計模式與開發實踐
- IBM DB2 9.7 Advanced Application Developer Cookbook