Skip to content
View sm1rnovdev's full-sized avatar
Block or Report

Block or report sm1rnovdev

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
sm1rnovdev/README.md

Hi there 👋, my name is Nikita


My stack:

A little about me:
I am fond of coding
I write in TypeScript and JavaScript (backend)
I help RusAnonym in the


and in the VK Mini App

I write various things,
starting from chatbots for social networks and messengers,
and ending with small projects for users

Before there was a chat bot in VK called FoxLight Bots
but due to lack of time and experience
I decided to quit the project

TypeScript:

class Me {
    private _name: string = 'Nikita (sm1rnovdev)';
    private _age: number = 19;
    private _county: string = 'Russia';

    private _language: string[];

    constructor(options: IMeOptions) {
        this._language = options.language;
    }

    public get text(): string {
        return `
            Hello! My name is ${this._name}, me ${this._age} years, i am from ${this._county} :D
            I use: ${this._language.join(', ')}.
        `;
    }
}

interface IMeOptions {
    language: string[];
}

const me = new Me({ language: ['JavaScript', 'TypeScript'] });

console.log(me.text);

Response in console:

    Hello! My name is Nikita (sm1rnovdev), me 19 years, i am from Russia :D
    I use: JavaScript, TypeScript.

You can find me here:

My GitHub profile My VK profile My NPM profile My Discord profile My E-Mail My E-Mail Our VK public

Powered

Popular repositories

  1. sm1rnovdev sm1rnovdev Public