React Native Newbie Questions Answered!

1. What programming language does React Native use?

2. Should I learn native iOS/Android coding?

3. Can I use the same code across iOS and Android?

4. Is React Native different than React?

import React from 'react';const Cat = () => {
return (
<div>
<p>Hello, I am your cat!</p>
</div>
);
}
export default Cat;
import React from 'react';
import { Text, View } from 'react-native';
const Cat = () => {
return (
<View>
<Text>Hello, I am your cat!</Text>
</View>
);
}
export default Cat;

5. Is React Native fast changing?

6. Can I reuse React Native code for web?

7. Is there a fast way to deploy code changes?

8. Should I use Expo or not?

Help Me Get Started!

Resources from me:

--

--

Software Consultant, Author, Speaker, React Native|React|GraphQL|Cypress Dev & Indian Classical Musician

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store
Adhithi Ravichandran

Software Consultant, Author, Speaker, React Native|React|GraphQL|Cypress Dev & Indian Classical Musician