Posts

Showing posts from July, 2023

Benefits of using immutable objects

Image
Introduction Hello Dev, is good to have you on my blog. In today's article, I will be talking about the benefits associated with using immutable object or data. Most of the time even when the situation does not demand using mutable object we still use them, whilst in the genuine case of using immutable we don't. I am hoping after reading this piece, you would know when to use mutable and when to use immutable, so as to have an efficient system running. Immutable data in computer programming refers to data that cannot be modified or changed after its creation. Once immutable data is created, its value remains fixed throughout its lifetime. Any attempt to modify the data will result in the creation of a new data instance with the desired changes, leaving the original data unchanged. Sample Code : //  JavaScript // Using primitive data types (immutable) let number = 42; // A primitive number let text = "Hello"; // A primitive string // Attempting to modify t

Can developers who use website builders call themselves coders.

Image
  This article would discuss the topic of whether developers who use website builders can call themselves coders. And we will also look at the technicalities involved. To read and understand more about who a coder is or what a website builder is all about, kindly visit this article  (Title : Why you need to be a pure coder )  to learn more.  People who use website builders typically rely on pre-designed templates, visual editors, and predefined features to create websites without delving into the underlying code. While they may engage in some basic customization and content management, their involvement in coding is limited. As such, individuals who primarily use website builders to create websites typically do not qualify as "coders" in the traditional sense. Coding generally refers to the practice of writing and manipulating code using programming languages to create software or websites from scratch or modify existing systems. However, it's worth noting tha

Why you need to be a pure coder

Image
  In this article, I will explain to you why you need to be a pure coder, and what it means to be a coder. I would also talk about website builders. Examples are Mobirise, Nicepage, and WordPress among other great website builders. Personally, I have used most of them before and they are quite wonderful software. Especially to folks with no coding background, these builders can come in very handy. But if you are reading this article and you have the love of coding flowing in your veins, learn why you need to be more of coding than depending solely on website builders. Who is a coder? A coder, short for "computer coder" or "software coder," is a person who writes or creates computer programs or software. Coding involves using programming languages, such as Python, Java, C++, or JavaScript, to write instructions that a computer can understand and execute. Coders are responsible for translating human ideas or requirements into a form that a computer can proc

followers