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));

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: