Problem Statement
Explain the concept of JSI (JavaScript Interface) and its benefits over the old bridge.
Explanation
JSI allows JavaScript to call native code directly without using asynchronous JSON serialization.
It improves performance by removing the overhead of message passing, enabling synchronous function calls and direct memory sharing between JS and native code.