- 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.
- Java 開發從入門到精通(第2版)
- Vue.js快速入門與深入實戰
- Clojure for Domain:specific Languages
- Python爬蟲開發與項目實戰
- Java程序設計與計算思維
- Mastering Scientific Computing with R
- Python機器學習實戰
- Eclipse Plug-in Development:Beginner's Guide(Second Edition)
- 網絡爬蟲原理與實踐:基于C#語言
- Python漫游數學王國:高等數學、線性代數、數理統計及運籌學
- 大模型RAG實戰:RAG原理、應用與系統構建
- Scientific Computing with Scala
- Learning Grunt
- 可視化H5頁面設計與制作:Mugeda標準教程
- 算法訓練營:海量圖解+競賽刷題(入門篇)