TypeScriptに追加されているのは、型システム

型の種類

// 型システム(Type)
// string
// number
// array

変数宣言
const 変数名: 型 = 値;

関数宣言
function 関数名(引数 : 型) : 型 {}

//nullable -> null 許容
//numberとnullを許可する
let a: number | null = null;

//年齢で帰ってくる値が異なる
function getGreeting(age : number): string | null {
	if(age < 20) {
		return null;
	} else {
		return "test"	
	}
}