Web / React native Interview questions
How different is React-native from ReactJS?
ReactJS knowledge can be leveraged for React-native however there few differences.
ReactJS is for developing web applications while React-native developing mobile applications.
We can use HTML tags in ReactJS however react native doesn't understand html tags.
In ReactJS, the virtual DOM renders the browser code, while React-native uses its API to render code for mobile applications.
ReactJS uses React-router for navigating web pages however react-native uses a built-in navigator library (React-navigation) for navigating mobile applications.
More Related questions...