</>
Skill
Recall
RECALL WHAT YOU KNOW
Library
Planner
Daily Recall
Why SkillRecall
More
About
News
Contact
Sign in
Explore Library
Create free account
Prepare for an interview
Explore Library
Quiz
Advanced
Save
Utility Type: Record
Building an object type with uniform keys and values.
What does `Record<"x" | "y", number>` produce?
A
{ x: number; y: number }
B
{ [k: string]: number }
C
{ x: "x"; y: "y" }
D
number[]