- 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."
- Facebook Application Development with Graph API Cookbook
- Maven Build Customization
- Twilio Best Practices
- GameMaker Programming By Example
- Visual C++數字圖像處理技術詳解
- C#程序設計教程(第3版)
- Mastering Git
- Learning Node.js for .NET Developers
- 創意UI:Photoshop玩轉APP設計
- 超簡單:Photoshop+JavaScript+Python智能修圖與圖像自動化處理
- Android Studio開發實戰:從零基礎到App上線 (移動開發叢書)
- Python物理建模初學者指南(第2版)
- C語言從入門到精通(視頻實戰版)
- 零基礎入門學習C語言:帶你學C帶你飛
- Visual C++ 開發從入門到精通