Sign in
Log inSign up
Chris Bongers

120 likes

·

3.7K reads

12 comments

andrei
andrei
Jan 14, 2021

Man, good job on writing and puttin you out there, but I made an account just to reply on this. Hate to see things overused just because they're shiny.

I noted there was some legacy code that was using loops and wasn't really efficient with the tools we have nowadays.

You replaced one completely fine loop with two loops and a ton of allocations. for is not freaking outdated. I think you meant to say "pretty" or "easier to follow", because the "modern" version is way, way less efficient than the original.

5
·
·1 reply
Chris Bongers
Chris Bongers
Author
·Jan 14, 2021

Hey Kernel

I might have actually better called the article "Modernizing your code" since the refactor wasn't a hard need, the code is working as is, and nothing wrong with it.

This would just be the modern-day approach.

1
·
Kevin Pliester
Kevin Pliester
Jan 14, 2021

I wish I could do it all at our place too. Unfortunately, most (german) visitors to our site still use Internet Explorer, because of SAP or other requirements from their companies.

I always have to make everything as old as possible so that it works everywhere. These are often customers from the legal field, funnily enough - who then still use Internet Explorer.

Thank you for your post, I find it quite useful, especially to refresh my brain cells a bit.

1
·
·2 replies
Chris Bongers
Chris Bongers
Author
·Jan 14, 2021

Hey Kevin that struggle is so real, my previous company had to support up to IE9

1
·
Akash Raju M
Akash Raju M
Jan 15, 2021

You don't have to write old code, you can use a JavaScript Compiler like babeljs.io

1
·
Chris Tanner
Chris Tanner
Jan 14, 2021

" Refactoring is intended to improve the design, structure, and/or implementation of the software, while preserving its functionality."

I don't think you've improved the design, structure, or implementation of this code. You've taken some clear, easy to read code, and made it harder to read. You've decreased the number of lines being used, but what's the benefit of that? We aren't charged by the number of lines we use.

Please, please don't do this.

1
·
·2 replies
Chris Bongers
Chris Bongers
Author
·Jan 14, 2021

I tend to disagree with you there Chris.

This book is specified on PHP, but the concept has some valid points.

adamwathan.me/refactoring-to-collections

However: I might have better called this article: "Modernizing your code" instead of refactor

·
Chris Tanner
Chris Tanner
Jan 15, 2021

Chris Bongers

Let's look at the pros and cons of this modernising.

Pros:

  • Uses modern technology, which is good, because... modern?
  • Uses less lines of code.

Cons: Readability - in an ideal world everyone would be up to date with ES6, but in reality most people are wayyy behind. I bet if you took a survey of software developers and asked them if they knew what a for each does vs Object.Entries, you'd have a lot more that understand the former. If the goal is to have clear code with a low probability that someone else modifying the code will make a mistake, going will the former will be more likely to achieve that. It's much safer to go with the lowest common denominator.

Bugs - Every time you modify code, there is the potential to add new bugs to the software. You have to weigh up this risk vs the benefit of making the changes. Usually code changes are either making the code more efficient, easier to read, or adding some new feature, which trumps the risk of creating bugs.

Efficiency - map is less efficient than for each, so this code will most likely be slower

Time - This took some amount of time and thought to implement, and presumably test. Since the code produces the same outcome, the time could have been better spent on producing value.

Debugging - It's harder to debug your script since it's so condensed. The old one you can just set a breakpoint on the line you want to debug, the new one you have to set a breakpoint on the line you want to debug, then the subsection. (Support for this has only just been added to vscode, support in other IDEs might not be there)

2
·
romeo adjam
romeo adjam
Jan 14, 2021

thank you for this great post

1
·
·1 reply
Chris Bongers
Chris Bongers
Author
·Jan 15, 2021

Thank you Romeo! Glad you like it

·
Murilo Boareto Delefrate
Murilo Boareto Delefrate
Jan 15, 2021

The article is well written and it has a very good knowledge about how to refactor a code, but I would do this refactoring in a completely different way. If you have a static list of items (that is short enough as in the example), why don't you simple create a variable that will be the final resolve as you expect? Why using loops and so on while you could have a simple

const newOutput = [
  ['Angular', 3, '#d17a29'],
  ['React', 1, '#da9554'],
  ['Vue', 2, '#e3af7f'],
  ['Next', 1, '#edcaa9'],
  ['HTML', 2, '#f6e4d4'],
  ['Other', 3, '#204e77']
];
1
·
·1 reply
Luiz Filipe da Silva
Luiz Filipe da Silva
Jan 15, 2021

Murilo Boareto Delefrate this article just gives us an example. Obviously, in a real world case, the algorithm would be complex and the variables could be used in other places along with the code.

1
·