- Mastering JavaScript
- Ved Antani
- 195字
- 2021-07-16 09:31:27
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: "First, the <script>
tag in <head>
imports JavaScript, while the second <script>
tag is used to embed inline JavaScript."
A block of code is set as follows:
function sayHello(what) { return "Hello " + what; } console.log(sayHello("world"));
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<head> <script type="text/javascript" src="script.js"></script> <script type="text/javascript"> var x = "Hello World"; console.log(x); </script> </head>
Any command-line input or output is written as follows:
EN-VedA:~$ node > 0.1+0.2 0.30000000000000004 > (0.1+0.2)===0.3 false
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 run the page and inspect using Chrome's Developer Tool"
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Extending Jenkins
- Xcode 7 Essentials(Second Edition)
- 碼上行動:零基礎學會Python編程(ChatGPT版)
- 精通搜索分析
- Vue.js 3.0源碼解析(微課視頻版)
- Python金融數據分析
- 64位匯編語言的編程藝術
- INSTANT Mercurial SCM Essentials How-to
- Julia Cookbook
- Python編程與幾何圖形
- Learning Python by Building Games
- Getting Started with NativeScript
- 西門子S7-200 SMART PLC編程從入門到實踐
- Android玩家必備
- Go語言底層原理剖析