Interface & Funtion trong Typescript (p1)

Trong bài này, chúng ta cùng tìm hiểu về interface & function trong Typescript. 1. Cài đặt ban đầu: NodeJS: https://nodejs.org/en/ ts-node package $npm i ts-node $touch interface.ts 2. Thực hành Đầu tiên chúng ta tạo file mới & định nghĩa một interface như sau: index.ts interfaceWeather{ date: Date; msg:string;} Diễn giải: Interface thời tiết

Trong bài này, chúng ta cùng tìm hiểu về interface & function trong Typescript.

1. Cài đặt ban đầu:

$npm i ts-node
$touch interface.ts

2. Thực hành

Đầu tiên chúng ta tạo file mới & định nghĩa một interface như sau:

index.ts

interfaceWeather{
  date: Date;
  msg:string;}
  • Diễn giải:
    • Interface thời tiết này có 2 props là date & message thông báo.
    • date có annotation là Date
    • msg có annotation là string

Tiếp theo, chúng ta cần tạo một object thỏa mãn cái interface nêu trên:

const todaysWeather: Weather ={
  date:'today',
  msg:'sunny',};

Lúc này typescript lại thông báo lỗi

The expected type comes from property 'date' which is declared here on type 'Weather'

Bây giờ chúng ta sửa lại cái prop date trong interface weather:

const todaysWeather: Weather ={
  date:newDate(),
  msg:'sunny',};

console.log(todaysWeather);

Tiến hành chạy combine run time:
$ts-node functions.ts, kết quả trả về như sau:

{ date:2022-06-29T06:25:51.534Z, msg: 'sunny' }

Bây giờ chúng ta tạo một arrow function như sau:

constlogWeather=(args: Weather)=>{console.log(args.date);console.log(args.msg);};logWeather(todaysWeather);

Kết quả:

2022-06-29T06:38:19.434Z
sunny

Toàn bộ code

interface Weather {
  date: Date;
  msg: string;
}

const todaysWeather: Weather = {
  date: new Date(),
  msg: 'sunny',
};

console.log(todaysWeather);

const logWeather = (args: Weather) => {
  console.log(args.date);
  console.log(args.msg);
};

logWeather(todaysWeather);

Chúng các bạn thành công nhé 😀

Nguồn: viblo.asia

Bài viết liên quan

WebP là gì? Hướng dẫn cách để chuyển hình ảnh jpg, png qua webp

WebP là gì? WebP là một định dạng ảnh hiện đại, được phát triển bởi Google

Điểm khác biệt giữa IPv4 và IPv6 là gì?

IPv4 và IPv6 là hai phiên bản của hệ thống địa chỉ Giao thức Internet (IP). IP l

Check nameservers của tên miền xem website trỏ đúng chưa

Tìm hiểu cách check nameservers của tên miền để xác định tên miền đó đang dùn

Mình đang dùng Google Domains để check tên miền hàng ngày

Từ khi thông báo dịch vụ Google Domains bỏ mác Beta, mình mới để ý và bắt đầ