Skip to content
View akbarjondev's full-sized avatar

Organizations

@abutech-uz

Block or report akbarjondev

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. Adds Event listeners to HTML element... Adds Event listeners to HTML elements and safely removes them
    1
    export function bind(target, { type, listener, options }) {
    2
      target.addEventListener(type, listener, options);
    3
    
                  
    4
      return function unbind() {
    5
        target.removeEventListener(type, listener, options);
  2. A complete guide to check data types... A complete guide to check data types in JavaScript
    1
    function getType(obj) {
    2
      const lowerCaseTheFirstLetter = (str) => str[0].toLowerCase() + str.slice(1);
    3
      const type = typeof obj;
    4
      if (type !== 'object') {
    5
        return type;