- TypeScript Essentials
- Christopher Nance
- 180字
- 2021-08-05 17:43:24
Conventions
In this book, you will find a number of styles of text 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: "To get started, let's create a new file on the filesystem and call it HelloWorld.ts
."
A block of code is set as follows:
var p = document.createElement('p'); var hello: string = "Hello"; var world: string = 2; p.textContent = hello + " " + world; document.body.appendChild(p);
Any command-line input or output is written as follows:
tsc HelloWorld.ts
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "To create a new project that includes TypeScript, go to the File menu and navigate to New | Project."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- HTML5+CSS3+JavaScript從入門到精通:上冊(微課精編版·第2版)
- Implementing Modern DevOps
- Python數據分析基礎
- Java EE框架整合開發入門到實戰:Spring+Spring MVC+MyBatis(微課版)
- 算法精粹:經典計算機科學問題的Python實現
- Python Essentials
- Elasticsearch Essentials
- Orchestrating Docker
- C語言從入門到精通
- Microsoft HoloLens By Example
- Node.js應用開發
- Flask開發Web搜索引擎入門與實戰
- 信息學奧林匹克競賽初賽精講精練
- Mastering Node.js
- LibGDX Game Development By Example