Created
September 12, 2024 10:06
-
-
Save teasmade/31f0183fba7887db62e2ce1f80624600 to your computer and use it in GitHub Desktop.
WCS TS Q2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// challenge.ts | |
interface User { | |
name: string; | |
age: number; | |
birthday?: string; | |
} | |
const prettyPrintWilder = (users: User[]): void => { | |
users.map((user) => { | |
console.log(`${user.name} is ${user.age} years old`); | |
}); | |
}; | |
const wilders: User[] = []; | |
const user1 = { name: "Pierre", age: 23 }; | |
const user2 = { name: "Paul", birthday: "10/02/1990", age: 23 }; | |
const user3 = { name: "Jacques", age: 25 }; | |
wilders.push(user1); | |
wilders.push(user2); | |
wilders.push(user3); | |
prettyPrintWilder(wilders); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment