Skip to content
Advertisement

How to convert text file into an array of objects?

I have a text which looks like the following

JavaScript

I want to read the file and put it into an array of objects.

This is what I have done so far

JavaScript

As you can see I am splitting the file, which creates an array but I am stuck on how to convert the items in the array into objects. How can I do this?

Advertisement

Answer

The format you’re working with is called ndjson. You could try looking for a parser made specifically for it.

Or if you’re reading it line by line into array, you can then map it to objects using JSON.parse.

JavaScript
Advertisement