“Таповые переменные” Ответ

Таповые переменные

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

Угловой тип струны

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

Ответы похожие на “Таповые переменные”

Вопросы похожие на “Таповые переменные”

Смотреть популярные ответы по языку

Смотреть другие языки программирования