I understand that if we bind a function inside a constructor it will load only once and creates a function in webpack bundle.js file. But if we do anywhere else like inside render It creates a new function every time your component re renders.
But the big question here is how much space it occupies whenever a function is created and can’t webpack reject the new function to be created when it is already created once?