I am trying to understand async calls using async/await and try/catch.
In the example below, how can I save my successful response to a variable that can be utilized
Just use a callback/promise (cascading programming):
axios(users).then(function(response) { const globalData = response; console.log(globalData) });