alhazmy13 / angular-csv-ext

Helper library for create CSV file in Angular.
MIT License
45 stars 23 forks source link

Used 'of' operator instead of 'in' operator to traverse through the a… #2

Closed abhisgit closed 6 years ago

abhisgit commented 6 years ago

…rray elements for headers

abhisgit commented 6 years ago

A simple test to showcase issue:

var test = ['It','works','correctly','now'];

var headers = ""; for (var index in test) { headers += index + ","; } console.log(headers); // expected output: "It,works,correctly,now," // actualoutput: "0,1,2,3,"

var headers = ""; for (var column of test) { headers += column + ","; } console.log(headers); // expected output: "It,works,correctly,now," // actualoutput: "It,works,correctly,now,"

devakone commented 6 years ago

Good deal!