Skip to content
View Goloburda's full-sized avatar
Block or Report

Block or report Goloburda

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. JavaScript call function n-times. JavaScript call function n-times.
    1
    // Function calls n-times before get '()';
    2
    
                  
    3
    const closureFn = firstArgument => {
    4
      let sum = firstArgument;
    5
      return function callMe(nextArgument) {
  2. React setState React setState
    1
    /*
    2
    The setState() method does not immediately update the state of the component, 
    3
    it just puts the update in a queue to be processed later. 
    4
    React may batch multiple update requests together to make rendering more efficient.
    5
    Due to this, special precautions must be made when you try to update