class Invoice {
	companyProfile : string;

	constructor(public name, public city, public state) {
		this.companyProfile = name + ", " + city + ", " + state;
	}
}

var googleInvoice = new Invoice('Google', 'Mountain View', 'State');
var yahooInvoice = new Invoice('Yahoo', 'SF', 'State');


console.log(googleInvoice.companyProfile);
console.log(yahooInvoice.companyProfile);

Embed on website

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