InterviewSolution
Saved Bookmarks
| 1. |
What is the use of the arrow function? |
|
Answer» The use of Arrow functions in React Native is to help reduce your APPLICATION's memory CONSUMPTION. It is DONE by reducing the CPU time required to iterate the over loops to generate the components NECESSARY for your lists. Here’s an example of Arrow function in render: |
|