function Def(x :number | string){
if(typeof x === 'number'){
return x+1
}
else if(typeof x === 'string){
return x+1
}
else{
return 0
}
}
&& 기호로 비교할 때 자료형을 넣으면 && 사이에서 처음 등장하는 falsy값(null,undefined,NaN)들을 찾고 아니면 마지막 값을 남겨줌
functiuon User(strs : string | undefined) {
if ( strs && typeof strs === 'string'){
console.log(s);
}
}
type Fish = { swim : string };
type Bird = { fly : string };
function Zoo(animal : Fish | Bird) {
if('swim' in animal) {
return animal.swim
}
return animal.fly
}
type Car = {
wheel : '4개',
color : string
}
type Bike = {
wheel : '2개',
color : string
}
function 함수(x : Car | Bike){
if (x.wheel === '4개'){
console.log('the car is ' + x.color)
} else {
console.log('the bike is ' + x.color)
}
}
function Def(x:number | string){
return (x as number) +1
}
// string 타입을 사용할 때
const name : string = 'Choi';
//타입 별칭을 사용할 때
type MyName = string;
const name : MyName = 'Choi';
// object 타입도 저장 가능
type Person = {
name : string,
age : number,
}
let student : Person = {name : 'Choi', age:20}
관례적으로 변수의 첫번째 문자는 대문자로 한다.
type Person = {
readonly name : string,
}
let student : Person ={
name : 'Choi'
}
student.name = 'Kim' //readonly Error발생
type Person = {
name? : string,
age : number,
}
let student : Person = {
age : 20
}
type Name = string;
type Age = number;
type Tot = Name | Age // string | number
type Num = (x : number, y : number) => number
let A : Num = function(x,y){
return x + y
}
let Info ={
name : string,
age : number,
PlusCount : ( x :number) => number,
ChangeName : () = >void
}
//변수 할당
let kim : '김씨';
let choi : '최씨';
// 함수 할당
function Def(a:'Hi') : 1 | 0{
return 1
}