1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
const オリンピック = class { constructor(name){ this.name = name; } toString() { return `この艦はオリンピック級${this.name}号です`; } }; const ships = []; ships.push(new オリンピック("オリンピック")); ships.push(new オリンピック("タイタニック")); ships.push(new オリンピック("ブリタニック")); ships.forEach(ship => console.log('' + ship)); |
1 2 3 |
この艦はオリンピック級オリンピック号です この艦はオリンピック級タイタニック号です この艦はオリンピック級ブリタニック号です |