- 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版)
- Learning ArcGIS Pro
- SQL經典實例(第2版)
- Mastering JavaScript Design Patterns(Second Edition)
- Java EE核心技術與應用
- Building Machine Learning Systems with Python(Second Edition)
- UNIX Linux程序設計教程
- 小型編譯器設計實踐
- IDA Pro權威指南(第2版)
- OpenCV Android Programming By Example
- Java Hibernate Cookbook
- Python面試通關寶典
- Clojure for Finance
- 現代C++語言核心特性解析
- Unity 3D UI Essentials