export class fetchObject{ constructor(url, id) { this.url = url + '/' + id } async getCounter() { const response = await fetch(this.url); const counter = await response.json(); return counter; } }