ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 14 - Certified JavaScript Developer I discussion

Report
Export

A developer uses a parsed JSON string to work with user information as in the block below:

01 const userInformation ={

02 " id " : "user-01",

03 "email" : "[email protected]",

04 "age" : 25

Which two options access the email attribute in the object?

Choose 2 answers

A.
userInformation("email")
Answers
A.
userInformation("email")
B.
userInformation.get("email")
Answers
B.
userInformation.get("email")
C.
userInformation.email
Answers
C.
userInformation.email
D.
userInformation(email)
Answers
D.
userInformation(email)
Suggested answer: A, C
asked 23/09/2024
Harri rrapaj
32 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first