We're a place where coders share, stay up-to-date and grow their careers.
This can also be done in ES6 like so:
import axios from "axios"; class Http { static get(url) { return axios.get(url); } static post(url) { return axios.post(url); } }
Yes, this is another way of doing it.
This can also be done in ES6 like so:
Yes, this is another way of doing it.