[typescript/*] Use ts for typescript syntax

This commit is contained in:
Boris Verkhovskiy 2024-04-19 04:34:47 -07:00
parent 0f69e0cddb
commit f56f80dd80
7 changed files with 7 additions and 7 deletions

View File

@ -16,7 +16,7 @@ Este artículo se enfocará solo en la sintáxis extra de TypeScript, y no en [J
Para probar el compilador de TypeScript, diríjase al [Área de Pruebas](https://www.typescriptlang.org/Playground) donde podrá tipear código, y ver como se auto-completa al tiempo que ve el código emitido JavaScript.
```js
```ts
// Existen 3 tipos básicos en TypeScript
var isDone: boolean = false;
var lines: number = 42;

View File

@ -16,7 +16,7 @@ Cet article se concentrera seulement sur la syntaxe supplémentaire de TypeScrip
Pour tester le compilateur de TypeScript, rendez-vous au [Playground](https://www.typescriptlang.org/Playground) où vous pourrez coder, profiter d'une autocomplétion et accéder directement au rendu JavaScript.
```js
```ts
// Il y a 3 types basiques en TypeScript
var isDone: boolean = false;
var lines: number = 42;

View File

@ -16,7 +16,7 @@ Ez a dokumentum a TypeScript által hozzáadott új szintaxissal foglalkozik, ne
Hogy kipróbáld a TypeScript fordítót, látogass el a [Játszótérre avagy Playground-ra](https://www.typescriptlang.org/Playground) ahol kódot írhatsz automatikus kódkiegészítéssel, és közvetlenül láthatod az előállított JavaScript kódot.
```js
```ts
// 3 alapvető típus létezik TypeScriptben
var isDone: boolean = false;
var lines: number = 42;

View File

@ -20,7 +20,7 @@ Dit artikel focust zich alleen op de extra's van TypeScript tegenover [JavaScrip
Om de compiler van TypeScript te kunnen proberen kun je naar de [Playground](https://www.typescriptlang.org/Playground) gaan.
Hier kun je automatisch aangevulde code typen in TypeScript en de JavaScript variant bekijken.
```js
```ts
// Er zijn 3 basis typen in TypeScript
var isKlaar: boolean = false;
var lijnen: number = 42;

View File

@ -16,7 +16,7 @@ Este artigo irá se concentrar apenas na sintaxe extra do TypeScript, ao contrá
Para testar o compilador TypeScript, vá para o [Playground](https://www.typescriptlang.org/Playground), onde você vai ser capaz de escrever código, ter auto conclusão e ver diretamente o JavaScript emitido.
```js
```ts
// Existem 3 tipos básicos no TypeScript
var isDone: boolean = false;
var lines: number = 42;

View File

@ -19,7 +19,7 @@ TypeScript добавляет в Javascript общие концепции, та
Для тестирования компилятора TypeScript пройдите по ссылке в [песочницу](https://www.typescriptlang.org/Playground).
Там вы можете написать код (с поддержкой автодополнения) и сразу же увидеть сгенерированный JavaScript код.
```js
```ts
// В TypeScript есть 3 базовых типа
var isDone: boolean = false;
var lines: number = 42;

View File

@ -16,7 +16,7 @@ Bu makale sadece TypeScript'e ait ekstra söz dizimini konu alır, JavaScript i
TypeScript derleyiciyi test etmek için [Playground](https://www.typescriptlang.org/Playground)'a gidin. Orada otomatik tamamlama ile kod yazabilecek ve üretilen JavaScript'i görebileceksiniz.
```js
```ts
// TypeScript'te üç ana tip vardır.
var bittiMi: boolean = false;
var satırlar: number = 42;