Problem Statement
On which thread does JavaScript code run in React Native?
Explanation
React Native maintains a separate JavaScript thread where all JS logic executes.
This prevents blocking the UI thread and allows smooth animations and user interactions.