Greetings to all. I would like to ask you a question related to the challenge I am facing:
I am currently sending my instance this variable from API:
const userInformation = {
identification: 123456789,
firstName: "James",
lastName: "Smith",
age: 27,
address: "13th Street 47",
};
The goal is that in the next userTask, the user can display the ID and the first name of the variable. How can I achieve this from the form? Currently, I know that if we use a variable with a value in the form, it will display that value. However, how can I do the same with the properties of an object, such as userInformation.firstName or userInformation.identification?
This is an example of the form:
form_1.form (851 Bytes)
I tried to use ${userInformation.firstName} but I see that it is not possible: