Tiger's Place

Tiger's Place

Follow
Follow
homebadges
Tag

clean code

#clean-code

More content

Read more stories on Hashnode


Articles with this tag

Wtf is SOLID? (JavaScript edition)

Nov 13, 20237 min read2.9K views

Let's learn SOLID the JavaScript way with functions. · Introduction Ever heard of SOLID? No, not the fun UI library Solid.js. The five famous SOLID...

Wtf is SOLID? (JavaScript edition)

Stop using boolean states

Nov 11, 20233 min read1.1K views

They are more dangerous than you think. · Introduction We often use boolean states to keep track of whether something is loading. Usually, it works as...

Stop using boolean states

Your last guide to JavaScript Generator Functions

Aug 31, 202313 min read338 views

Generator functions have their purposes and aren't a complete waste. · Introduction Generator functions are arguably the most confusing topic in...

Your last guide to JavaScript Generator Functions

Qualities of good software

Nov 9, 20226 min read257 views

It takes effort and initiative to craft good software. · It does take effort to craft good software, and it is the responsibility of software engineers...

Qualities of good software

Why const over let

Sep 1, 20222 min read1.5K views

Is it true that const makes a variable immutable? · In this article, I want to discuss why I prefer const over let when declaring variables in...

Why const over let

A Set of Refactorings

Jun 26, 20212 min read147 views

5 ways to improve the existing code. · In this article, we will have a look at 5 ways you can improve the existing code. Extract Function Sometimes you...

A Set of Refactorings