“variabel naskah” Kode Jawaban

variabel naskah

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

Jenis string sudut

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

Jawaban yang mirip dengan “variabel naskah”

Pertanyaan yang mirip dengan “variabel naskah”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya