Skip to content
View gopal1996's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report gopal1996

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

Hi, I'm Gopalakrishnan, a Frontend Developer 🚀 from India. I'm a currently working in Kissflow as a Software Engineer. Beside's programming, I enjoy eating, playing games, PC Builder💻 and also a Pet lover🐶 .

Talking about Personal Stuffs:

  • 👯 I’m looking to collaborate on Open Source✨
  • 🤔 I’m looking for help with Data Structures and Algorithms😥
  • 💬 Ask me about anything, I am happy to help😊
  • 📫 How to reach me: krishnan.gopal34@gmail.com

Languages and Tools:

Pinned

  1. PixelArt PixelArt Public

    JavaScript 4

  2. console.md console.md
    1
    # Console
    2
    Console is an Object that provides access to browser’s console. Console Object has different method to display information in browser dev tool.
    3
    
                  
    4
    - Logging
    5
    - Tracing
  3. ES6_Map.md ES6_Map.md
    1
    # Map
    2
    
                  
    3
    - The Map object holds key-value pairs and remembers the original insertion order of the keys
    4
    - Any value (both objects and primitive values) may be used as either a key or a value
    5
    
                  
  4. ES6_Set.md ES6_Set.md
    1
    # Set
    2
    
                  
    3
    Sets are a new object type which allow to create collections of unique values. 
    4
    The values in a set can be either primitives like strings or integers and non-primitives like object literals or arrays.
    5
    
                  
  5. var_let_constv2.md var_let_constv2.md
    1
    # VAR vs LET vs CONST
    2
    
                  
    3
    ## VAR
    4
    In Javascript, when you declare variable using var keyword
    5
    - The variable declared using var keyword **outside the function** are **global scope**.