so i want to use multible Data, 1 line as a array string seperate from the Textarea in the Backend from my NodeJS Web Application to save them as a new Data in the Collection:
{"_id":"someid","Name":"Tim"},{"_id":"someid","Name":"Steve"}
This in a Textarea:
Tim
Steve
John
so now in the Backend shuld the Data store in a array to create new MongoDB Data:
var data = ['Tim', 'Steve', 'John'];
I dont know how to seperate the Datas to a Array in the Backend...