- 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.
- Java程序設(shè)計(慕課版)
- 數(shù)據(jù)庫原理及應(yīng)用(Access版)第3版
- Mastering Kali Linux for Web Penetration Testing
- SQL基礎(chǔ)教程(視頻教學(xué)版)
- FFmpeg入門詳解:音視頻原理及應(yīng)用
- Drupal 8 Configuration Management
- 利用Python進(jìn)行數(shù)據(jù)分析(原書第3版)
- bbPress Complete
- Raspberry Pi Home Automation with Arduino(Second Edition)
- Python算法指南:程序員經(jīng)典算法分析與實現(xiàn)
- 西門子S7-200 SMART PLC編程從入門到實踐
- Yii Project Blueprints
- 從零開始學(xué)Python網(wǎng)絡(luò)爬蟲
- Spring 5 Design Patterns
- Mastering Machine Learning with scikit-learn