“Zmienne maszynopisowe” Kod odpowiedzi

Zmienne maszynopisowe

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

Kątowy typ ciągu

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

Odpowiedzi podobne do “Zmienne maszynopisowe”

Pytania podobne do “Zmienne maszynopisowe”

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

Przeglądaj inne języki kodu