Quiz: Handling Data

Test your understanding of what you have learned in this section.

1

Which option has the correct syntax for renaming the returned data?

A)

const { data: images } = await useFetch(url);

B)

const { images: data } = await useFetch(url);

C)

const { images = data } = await useFetch(url);

D)

const { data = images } = await useFetch(url);

Question 1 of 50 attempted

Get hands-on with 1200+ tech skills courses.