Mahdi Bashirpour
Mahdi Bashirpour

Reputation: 18803

React Native Performance: Javascript vs Typescript

Is Javascript or Typescript different in React Native App performance?

Which Javascript or Typescript is recommended for developing React Native application?

I hope my question wasn't too imaginative.

Upvotes: 1

Views: 3084

Answers (1)

Brian
Brian

Reputation: 131

As others have said, typescript is just compiled to javascript. Think of Typescript as a tool like eslint that helps you write better code, just in a different way (forcing object types, etc). There will be no performance change to the user, only difference is in whatever step you do to build your application will now have to have a typescript parser that compiles it.

Upvotes: 5

Related Questions