1. 程式人生 > >TypeScript之解構賦值

TypeScript之解構賦值

對象 賦值 RR rar 圖片 err col turtle con

一 數組的解構賦值

const heroes: string[] = [];
const turtles: string[] = [‘Leo‘, ‘Raph‘, ‘Mikey‘, ‘Don‘];
console.log(...turtles);
heroes.push(...turtles);
console.log(heroes);

技術分享圖片

二 對象的結構賦值

const name = ‘iPhone‘;
const color = ‘gold‘;
console.log(JSON.stringify({ name, color }));

技術分享圖片

const phone = {
  name: 
‘iPhone‘, color: ‘gold‘ }; const car = { name: ‘Ferrari‘, color: ‘red‘ }; console.log(JSON.stringify({ phone, car }));

技術分享圖片

TypeScript之解構賦值