How can I read multiple CSV at once and accept similar result on every line ?
I am trying to choose similar result on similar CSV and then choose the value that appears the most.
Example User 1 Uploads CSV1
Name | ID |
will | 2 |
joseph | 3 |
john | 6 |
User 2 Uploads CSV2
Name | ID |
will | 2 |
joseph | 5 |
john | 6 |
User 3 Uploads CSV3
Name | ID |
will | 2 |
joseph | 5 |
john | 7 |
Final Result of this merging will be
Name | ID |
will | 2 |
joseph | 5 |
john | 6 |
Any Idea how I can achieve this in NodeJS ?