- Learning Underscore.js
- Alex Pop
- 211字
- 2021-07-09 21:11:52
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 just need to open the SpecRunner.html
file in a browser and we should see this output."
A block of code is set as follows:
var peopleWithAwardAge = _.map(people, function(person){ return { name: person.name, awardAge: person.awardYear - person.birthYear } });
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
var peopleWithAwardAge = _.map(people, function(person){
return {
name: person.name,
awardAge: person.awardYear - person.birthYear
}
});
Any command-line input or output is written as follows:
npm install -g bower
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: "Executing the following line in a Command Prompt with administrator privileges (opened using the Run as administrator option)."
- MySQL 8 DBA基礎(chǔ)教程
- 精通搜索分析
- Raspberry Pi for Secret Agents(Third Edition)
- Lua程序設(shè)計(jì)(第4版)
- 微服務(wù)架構(gòu)深度解析:原理、實(shí)踐與進(jìn)階
- Learning Apache Karaf
- Scala for Machine Learning(Second Edition)
- JSP程序設(shè)計(jì)實(shí)例教程(第2版)
- Orleans:構(gòu)建高性能分布式Actor服務(wù)
- Node.js區(qū)塊鏈開發(fā)
- Java面向?qū)ο蟪绦蛟O(shè)計(jì)教程
- 軟件再工程:優(yōu)化現(xiàn)有軟件系統(tǒng)的方法與最佳實(shí)踐
- Android項(xiàng)目實(shí)戰(zhàn):博學(xué)谷
- 情境微課開發(fā)(第2版)
- Kotlin入門與實(shí)戰(zhàn)