So Im trying to print specified value from axios get response but its still undefined
and here is specified response.data.id & response.data.ID log
why is this happening?
Here is code
const response = await axios.get(`${apiurl}/get/id/${id}`);
console.log(response.data);
console.log(response.data.id);
console.log(response.data.ID);