how can i access a array from a nested array and convert them to string
var mobiles = [ { name: "IPhone 11", brand: "iPhone", camera: [32, 64], processor: ["snapdragon", "Qualcomm"], }, { name: "S20", brand: "Samsung", camera: [64, 128], processor: ["snapdragon", "Qualcomm", "exons"], }, { name: "Redmi k30", brand: "Redmi", camera: [32, 64], processor: ["snapdragon", "Qualcomm"], }, { name: "Redmi k20", brand: "Redmi", camera: [32, 64], processor: ["snapdragon", "Qualcomm"], }, ]; this is my array of object i need to access only the camera section of array and get those values and add them on a new array without any duplication (*only javascript no ES)