Void
๋ณ์์๋ undefined์ null๋ง ํ ๋นํ๊ณ , ํจ์์๋ ๋ฐํ ๊ฐ์ ์ค์ ํ ์ ์๋ ํ์
์ด๋ค.
void๋ฅผ ์ฐ๋ ์ด์ : ๊ณผ๊ฑฐ์๋ ๋ฉ๋ชจ๋ฆฌ๋ฅผ ์๋ผ๊ธฐ ์ํด return 0 ๋ง์ ๋ voidํ์ผ๋ก ๋ฆฌํด๊ฐ์ ์๋ตํ๋ค.
let unuseful: void = undefined; function notuse(): void { console.log("sth"); }
ย