In Ionic 3, I am fetching an array of objects in the controller. But it is not useful for me. So I want to convert array of objects to array of strings.. I am getting following data in controller.
this.users = [{"id":1,"name":"US"},{"id":2,"name":"UK"}]
But I want the result below:
this.users = ["US", "UK"];