Problem Statement
What does JSI stand for in React Native’s new architecture?
Explanation
JSI stands for JavaScript Interface. It allows JavaScript code to directly call C++ and native methods without serialization.
This results in faster communication between JS and native layers compared to the old JSON bridge.
Practice Sets
This question appears in the following practice sets: