I'm currently working with the latest version of Angular 2. My goal is to take a JSON array like this:
jsonObject = [
{"name": "Bill Gates"},
{"name": "Max Payne"},
{"name": "Trump"},
{"name": "Obama"}
];
and convert it into a string array, storing only the values in an array like this:
arrayList: [string] = [''];
I attempted to use the Stringify method but unfortunately, it did not work as expected.