fetch() flow
Assign Request to Variable
const request = fetch("__URL__")
ConsumePromise using .then()& call .json()on response Argument
.then(res => res.json())
Chain more .then()for more async operations on data
Chain .catch() to handle error on Async Reject
.catch(err => console.err(err.message))