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...
Redux Ecosystem Quiz Practice
Active Recall Drill Session
← Exit Session
Question 1 of 1
medium
Redux Ecosystem
A store.subscribe(listener) callback fires after dispatching an action whose reducer case doesn't exist (falls to default, returns the same state reference unchanged). Does the listener fire?
A
No, because state didn't actually change
B
Yes — subscribe fires after every dispatched action, regardless of whether the resulting state reference is actually different
C
Only in development mode
D
Only if middleware is installed
Check Answer