标签:.com string name err bubuko 分享 pes types []
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 }));
标签:.com string name err bubuko 分享 pes types []
原文地址:https://www.cnblogs.com/sea-breeze/p/9062468.html