I'm a software enginner building customized solutions for businesses.
I have a zeal for Full Stack Development. I have spent some good time working on the Node environment designing customer-facing UI, developing and maintaining back-end services and ensuring optimal performance of the application.
class Salif extends Person {
    constructor() {
        this.name = 'Salif Moin'
        this.work = ['Software Engineer']
        this.hobbies = ['Football', 'Swimmming']
    }
    get currentLocation() {
        return 'Noida, India'
    }
    get reachOutAt() {
        return {
            email: '[email protected]',
            website: 'https://salif-04.github.io/'
        }
    }
}
