“Typy zmiennych typów” Kod odpowiedzi

Liczba liczby całkowitej

// There is no int type, use number
const myInt: number = 17;
const myDecimal: number = 17.5;
Arrogant Ape

Typy zmiennych typów

let name: string; // stores text
let age: number; // stores numbers
let isMale: boolean; // stores a true or false values
let typeAny: any; // stores any type of value
let typeNull: null = null; // can only store a null value
let typeUndefined: undefined = undefined; // can only store undefined value

// these are the basic types of variables in TypeScript
// and of course you can change let to const
ST111

Jak zdefiniować typy w TypeScript

type Person = {
  name: string;
  age: number;
};

const person: Person {
	named: 'Rex'
  	age: 23
}
 
function greet(person: Person) {
  return "Hello " + person.name;
}
REX OMIV

Jak zdefiniować typy w TypeScript

interface Person {
  name: string;
  age: number;
}

const person:Person {
	name: "Rex",
    age: 20
}
 
function greet(person: Person) {
  return "Hello " + person.name;
}
REX OMIV

Kątowy typ ciągu

if(typeof myVariable === 'string'){
	//do
}
ChernobylBob

Rodzaj danych kątowy

let decimal: number = 6;
let hex: number = 0xf00d;
let binary: number = 0b1010;
let octal: number = 0o744;
let big: bigint = 100n;Try
Grieving Gharial

Odpowiedzi podobne do “Typy zmiennych typów”

Pytania podobne do “Typy zmiennych typów”

Więcej pokrewnych odpowiedzi na “Typy zmiennych typów” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu