Skip to content

Instantly share code, notes, and snippets.

View ehsann95's full-sized avatar
💻
Focusing

Ahsan ehsann95

💻
Focusing
View GitHub Profile
class EasyHTTP {
// GET Request
async get(url) {
const response= await fetch(url);
const data = await response.json();
return data;
}