- Learning Behavior:driven Development with JavaScript
- Enrique Amodeo
- 218字
- 2021-07-23 20:52:32
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: "The headers
property of the replay
object is an array of regular expressions."
A block of code is set as follows:
var result = b.operation(1, 2); expect(result).to.be.deep.equal({ args: [1, 2], result: 3 });
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
module.exports = function (findConfiguration) { return function () { findConfiguration('default'); return validatorWith([ nonPositiveValidationRule, nonDivisibleValidationRule(3, 'error.three'), nonDivisibleValidationRule(5, 'error.five') ]); }; };
Any command-line input or output is written as follows:
$ me@~> mkdir validator $ me@~> cd validator $ me@~/validator> npm init
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: "You can download and execute a nice installer by going to Node.js website and clicking on Install."
- Mastering Entity Framework Core 2.0
- Manga Studio Ex 5 Cookbook
- 跟“龍哥”學C語言編程
- PHP程序設計(慕課版)
- 看透JavaScript:原理、方法與實踐
- Web Application Development with MEAN
- C++ 從入門到項目實踐(超值版)
- 手把手教你學C語言
- FLL+WRO樂高機器人競賽教程:機械、巡線與PID
- Mastering Android Development with Kotlin
- 一本書講透Java線程:原理與實踐
- 零基礎學Python編程(少兒趣味版)
- DB2SQL性能調優秘笈
- Building Web and Mobile ArcGIS Server Applications with JavaScript(Second Edition)
- Natural Language Processing with Python Cookbook