Skip to content
View uvarovag's full-sized avatar

Block or report uvarovag

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

Pinned Loading

  1. rect-app rect-app Public

    TypeScript

  2. react-module-federation-static react-module-federation-static Public

    TypeScript 1

  3. eslint-config-ts-react eslint-config-ts-react Public

    JavaScript 2

  4. tsconfig-react tsconfig-react Public

  5. TS_notes.md TS_notes.md
    1
    # TS notes
    2
    ## Примитивные типы
    3
    не нужно указывать типы явно, если это за вас сможет сделать вывод типов
    4
    * ```number``` ```string``` ```boolean``` ```symbol``` ```bigInt```
    5
    * ```any``` (top type) базовый тип все типы в TypeScript являются его подтипами
  6. JS_notes.md JS_notes.md
    1
    # JS notes
    2
    
                  
    3
    ## Лексическое окружение / замыкание / this
    4
    [js-visualizer](https://ui.dev/javascript-visualizer)
    5
    ```js