From b984c6c10436f50a1130bea445e39c9fb82f3bba Mon Sep 17 00:00:00 2001 From: jraitz Date: Thu, 22 Dec 2016 14:32:10 -0500 Subject: [PATCH] rely on Javascript's toLocaleString() to supply the appropriate punctuation. --- 06 - Type Ahead/index-FINISHED.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06 - Type Ahead/index-FINISHED.html b/06 - Type Ahead/index-FINISHED.html index 5902b43936..cf6489ce1d 100644 --- a/06 - Type Ahead/index-FINISHED.html +++ b/06 - Type Ahead/index-FINISHED.html @@ -43,7 +43,7 @@ return `
  • ${cityName}, ${stateName} - ${numberWithCommas(place.population)} + ${parseInt(place.population).toLocaleString()}
  • `; }).join('');