Skip to content

Instantly share code, notes, and snippets.

@nefzina
Last active September 18, 2023 11:52
Show Gist options
  • Save nefzina/b69d5086be6af25ae31b0594e5da7dea to your computer and use it in GitHub Desktop.
Save nefzina/b69d5086be6af25ae31b0594e5da7dea to your computer and use it in GitHub Desktop.
interface User {
name: string;
age?: number;
birthday?: string;
}
const prettyPrintWilder = (users: User[]):void => {
users.map((user: 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" };
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