var names : string[] = ['Jordan', 'Tiffany', 'Kristine'];
var counter : number = 0;

(function() {
	for (let name in names) {
		counter++;
	}
})();

console.log(counter);

Embed on website

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