Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 16, 2024 03:16 am GMT

Code Smell 247 - Javascript Replace

You want to replace all, but you replace one ocurrence

TL;DR: Bad function names will lead you to defects

Problems

Solutions

  1. Avoid ambiguous or bad names

  2. Wrap with your functions

  3. Use mature languajes

Context

Some names in immature languages break the bijection principle.

When you use them, you agree on some semantics that are not the actual behavior.

Consequently, you must know accidental implementations to avoid this defect.

Sample Code

Wrong

const pets = '';const justDogs = pets.replace('', '');const catsArePresent = justDogs.includes('');// returns true

Right

const pets = '';const justDogs = pets.replaceAll('', '');// Orconst justDogs = pets.replace(//g, '');const catsArePresent = justDogs.includes('');// returns false

Detection

[X] Automatic

You can search and forbid the usage of replace() in your code and define replaceFirst() if you need to change only the first occurrence

Tags

  • Naming

Level

[x] Beginner

AI Generation

All generators avoided this problem.

AI Detection

ChatGPT and Copilot use Regular Expressions to solve the problem.

Gemini and Claude failed to spot the mistake.

None of them use replaceAll() (introduced in ES2021)

Conclusion

Using replace() instead of replaceAll() would not fully achieve the intended result of replacing all occurrences.

It would only replace the first occurrence, potentially leading to incorrect behavior if there are multiple occurrences.

Relations

More Info

Disclaimer

Code Smells are my opinion.

Credits

Photo by Jari Hytnen on Unsplash

We must not blame programmers for their bugs. They belong to them only until the code is merged to the repository. After that, all bugs are ours!

Yegor Bugayenko

This article is part of the CodeSmell Series.


Original Link: https://dev.to/mcsee/code-smell-247-javascript-replace-ee1

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To