DeepFrontend
Learning Paths
Practice
System Design & DS
Design Studio
Data Structures Curriculum
Real-World Case Studies
Careers
Job Board
Resume Builder
Blog
Sign in
Search
⌘K
Go Pro
Loading compiler resources...
TypeScript Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
hard
TypeScript
A property is typed `readonly settings: { theme: string }`. Which of these is NOT blocked by readonly?
A
config.settings = { theme: "light" }
B
config.settings.theme = "light"
C
Both are blocked
D
Neither is blocked
Check Answer