- 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.
- Python完全自學教程
- R Deep Learning Cookbook
- Serverless computing in Azure with .NET
- INSTANT Yii 1.1 Application Development Starter
- SQL Server 2008 R2數據庫技術及應用(第3版)
- ActionScript 3.0從入門到精通(視頻實戰版)
- 奔跑吧 Linux內核
- SaaS攻略:入門、實戰與進階
- 程序員的英語
- Building Microservices with Go
- Distributed Computing with Python
- R語言與網站分析
- Isomorphic JavaScript Web Development
- 計算機視覺實戰:基于TensorFlow 2
- 匯編語言程序設計