1class HurkTech {
2 constructor() {
3 this.expertise = ['Web Dev', 'Mobile Apps', 'IT Networking', 'Computer Training'];
4 this.clients = 100+;
5 this.location = 'Kampala, UG';
6 }
7
8 deliverSolution(client) {
9 return `Transforming ${client.business} digitally`;
10 }
11}
12
13
14const hurk = new HurkTech();
15hurk.deliverSolution({ business: 'Yours' })