TypeScript์ ๊ธฐ์ด ๐ฆ| #2: Tipos de datos primitivos y especiales
4345 ๋จ์ด webdevbeginnersspanishtypescript
์ ํ์์ค ๋ฐ ํฐํ๋ ํธ์๋ฅดํ
Para poder escribir codigo con tipado fuerte se usa la siguiente sintaxis:
let nombreVariable: tipoVariable = valorVariable;
Puedes usar
const
tambiรฉn.
Tipos de datos primitivos
TypeScript๋ ๋ฐ์ดํฐ์ ๋ํ ์ ์ฉํ ์ ๋ณด๋ฅผ ์ ๊ณตํฉ๋๋ค.
๋
const nombre:string = "Cristian";
์ซ์
const edad:number= 25;
๋ถ์ธ
const isSoltero:boolean= true;
ํ์ ๋์ง ์์
const u:undefined = undefined;
์๋
const n:null= null;
Tipos de datos especiales
TypeScript๋ ํน๋ณํ ๋ฐ์ดํฐ๋ฅผ ์ํ ํ์ ์ ๊ณตํฉ๋๋ค.
์ด๋
์ ์ธ์ ๋ณ์๋ ์ ํ์ ์ผ๋ก ์ฌ์ฉํ ์ ์์ต๋๋ค. ์๋ฅผ ๋ค์ด API๋ฅผ ์ฐธ์กฐํ์ญ์์ค. Se recomienda solo usarla cuando sea estrictamente necesario.
const pais:any= "Bolivia";
๋ฌดํจ์
ํ์ํ ์ ์๋ ๊ธฐ๋ฅ์ ์ฌ์ฉํ ์ ์์ต๋๋ค.
function mostrarMensaje(mensaje:string):void{
console.log(mensaje);
}
Esta funciรณn no tiene ninguna declaraciรณn
return
en su cuerpo, por ellos mismo es idรณneo usar el tipo de dato void
para indicar esto mismo.Veremos funciones a profundidad en posteriores posts.
์ ๋
ํ์ฌ์ ์ฉ๋งน์ ๋ํํฉ๋๋ค. Poco usado en la prรกctica. ์ค๋ฅ๊ฐ ์๋ ๊ฒฝ์ฐ ์คํ๋์ง ์์ต๋๋ค.
function error(mensaje: string): never {
throw new Error(mensaje);
}
๊ฒฐ๋ก
string
, number
, boolean
, null
, undefined
, any
, never
, (4), void
, (4)79,7์ฐธ์กฐ
Reference
์ด ๋ฌธ์ ์ ๊ดํ์ฌ(TypeScript์ ๊ธฐ์ด ๐ฆ| #2: Tipos de datos primitivos y especiales), ์ฐ๋ฆฌ๋ ์ด๊ณณ์์ ๋ ๋ง์ ์๋ฃ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋งํฌ๋ฅผ ํด๋ฆญํ์ฌ ๋ณด์๋ค https://dev.to/duxtech/fundamentos-de-typescript-2-tipos-de-datos-primitivos-y-especiales-3n3eํ ์คํธ๋ฅผ ์์ ๋กญ๊ฒ ๊ณต์ ํ๊ฑฐ๋ ๋ณต์ฌํ ์ ์์ต๋๋ค.ํ์ง๋ง ์ด ๋ฌธ์์ URL์ ์ฐธ์กฐ URL๋ก ๋จ๊ฒจ ๋์ญ์์ค.
์ฐ์ํ ๊ฐ๋ฐ์ ์ฝํ ์ธ ๋ฐ๊ฒฌ์ ์ ๋ (Collection and Share based on the CC Protocol.)
์ข์ ์นํ์ด์ง ์ฆ๊ฒจ์ฐพ๊ธฐ
๊ฐ๋ฐ์ ์ฐ์ ์ฌ์ดํธ ์์ง
๊ฐ๋ฐ์๊ฐ ์์์ผ ํ ํ์ ์ฌ์ดํธ 100์ ์ถ์ฒ ์ฐ๋ฆฌ๋ ๋น์ ์ ์ํด 100๊ฐ์ ์์ฃผ ์ฌ์ฉํ๋ ๊ฐ๋ฐ์ ํ์ต ์ฌ์ดํธ๋ฅผ ์ ๋ฆฌํ์ต๋๋ค