Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This tutorial provides a brief overview of TypeScript, focusing on its type syst
## Types by Inference

TypeScript knows the JavaScript language and will generate types for you in many cases.
For example in creating a variable and assigning it to a particular value, TypeScript will use the value as its type.
For example in creating a variable and assigning it to a particular value, TypeScript will use the value to infer its type.

```ts twoslash
let helloWorld = "Hello World";
Expand Down