interface User {
email : string;
firstName? : string;
lastName? : string;
}
function profile(user: User) : string {
return `Welcome, ${user.email}`;
}
var realUser = {
email: 'test@test.com'
};
console.log(profile(realUser));
To embed this project on your website, copy the following code and paste it into your website's HTML: