Skip to content
View rodukov's full-sized avatar
๐Ÿ‡ง๐Ÿ‡พ
Obviously 138, of course 138.
๐Ÿ‡ง๐Ÿ‡พ
Obviously 138, of course 138.

Block or report rodukov

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
rodukov/README.md

Hi there, I'm Gleb Rodukov ๐Ÿ‘‹๐Ÿป

Technologies I specialize in:

Software I specialize in:

Public Stats

Pinned Loading

  1. Senior JavaScript Things Senior JavaScript Things
    1
    const person1 = {"name": "Michael", age: 25}
    2
    const person2 = {"name": "Kate", age: 23 }
    3
    
                  
    4
    function log() {
    5
      console.log(this.name, this.age)
  2. ๐Ÿ”ฎ This proxy will replace the unknow... ๐Ÿ”ฎ This proxy will replace the unknown key with null.
    1
    const set_default = (target, default_value = 0) => {
    2
      return new Proxy(target, {
    3
        get: (obj, prop) => (prop in obj) ? obj[prop] : default_value) 
    4
      }) 
    5
    }