...

/

Quiz: Handling Data

Quiz: Handling Data

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

We'll cover the following...
Technical Quiz
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);


1 / 5
...