Skip to content
View p1errot's full-sized avatar
  • Bogotá, Colombia
Block or Report

Block or report p1errot

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

  1. creational-constructor-pattern.js creational-constructor-pattern.js
    1
    class Person {
    2
      constructor(name, action) {
    3
        this.name = name;
    4
        this.action = action;
    5
        
  2. creational-singleton-pattern.js creational-singleton-pattern.js
    1
    class User {
    2
      constructor(name) {
    3
        if (typeof User.instance === 'object')
    4
          return User.instance;
    5
    
                  
  3. excercises excercises Public

    Basic excercises of Javascript

    JavaScript

  4. money-xchange money-xchange Public

    TypeScript

  5. react-hooks-and-controller react-hooks-and-controller Public

    Basic implementation for hooks and controller component

    JavaScript

  6. voting-page voting-page Public

    CSS