The method I am currently employing involves the following:
var authorsNameList = authors.map(x => x.FirstName + ' ' + x.LastName);
Yet, this generates an outcome similar to this:
Bob Smith,Bill Jones,Nancy Smith
Nevertheless, the desired result should appear like this:
Bob Smith, Bill Jones, Nancy Smith