Development Study/Frontend

[TypeScript] TypeScript Grammar - 06~07

  • -
728x90

Previous Series

 

[TypeScript] TypeScript Grammar - 03~05

3. Type alias This Posting contains how to alias type to other variables type myType = number | string; let grade: myType = 3 Use type to create type and use to annotate another. Usually, we use it when we have to define two or more variables 3_01. Type al

time-map-installer.tistory.com


6.  Functions

This Posting contains how to make functinos in TypeScript


6_01.  Functions_return type

When contains void

function add(n1: number, n2: number):void{
	console.log(n1 + n2);
}

When contains return type

function add(n1: number, n2: number):void{
	return (n1 + n2);
}

function time(minute: number):boolean{
	return num = 60;
}

function functionTest (x: number): number{
	return x*3;
}

functionTest(2);
functionTest('10'); // not number value, error

6_02.  Functions_with optional

import { log } from "console";

function hello(name ?: string){
	return `hello, ${name || "world"}`;
}

const result = hello();
const result2 = hello("Sam Rider");

log(result); // hello, world
log(result2); // hello, Sam Rider

I think that part of "${name || 'world'}" may be show 'world' when the name's type is different from the setting


7.  Loop

Maybe you are familiar with this, because in Python, there is a 'for loop' and it is similar


7_01.  Loop_let ... in

array

import { log } from 'console';

let list: string[] = ['test1', 'test2', 'test3'];

for (let i in list){
	log(i, list[i]);
}

Q. Can we do the type designation on the following list?

 

import { log } from 'console';

let animals: any = {a: 'rat', b: 'cat', c: 'tiger'}
for (let anim in animals){
	log(anim, animals[anim]);
}

A. Of course No


7_02.  Loop_let ... of

import { log } from 'console';

let str: string = "hello";

for (const a of str){
	log(a);
}

End

 

 

Next Series

 

[TypeScript] TypeScript Grammar - 08

Previous Series [TypeScript] TypeScript Grammar - 02 Previous Series [TypeScript] TypeScript Grammar - 01 1. Type Annotation TypeScript uses colon ( : ) behind variables to annotate a type const myMaxHamburger: number = 3; const answer: string = "Yes I can

time-map-installer.tistory.com

 

728x90
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.