I started programming in React Native, and I got used to use the syntax:
async myFunction(){ ... return await otherFunction(); }
Bu
Alternatively you can use Typescript.
Since version 2.1 it is possible to use async/await and directly transpile to ES5 (in other words have it run on ~all browsers)
async/await