asally.hashnode.devUnderstanding the Filter Method in JavaScript: A Simple GuideHello everyone, Welcome to code invasion, In this tutorial we will learn how the filter method in JavaScript works, The filter method in JavaScript is an array method that creates a sub array of elements that satisfies a given condition from an origi...Nov 20, 2024路4 min read
asally.hashnode.dev5 Practices To Write Maintainable React Code.Writing clean and maintainable code is essential to the maintenance of every software ever created. As developers, it鈥檚 necessary to develop good habits that enhances our ability to write clean and maintainable code. Obtaining this skill is crucial b...Feb 23, 2024路3 min read
asally.hashnode.dev5 extensions that made me love VS Code馃槏Hello everyone 馃憢馃従 welcome, In this post, we will explore some of the best VS Code extensions that will significantly improve your coding experience as a beginner web developer. Why VS Code is a popular choice. VS Code is one of the most popular cho...Nov 8, 2023路3 min read
asally.hashnode.devConditional StatementsIn programming, we might want to make decisions or do something based on certain conditions. For example, we might want to add two numbers if they are both positive numbers. In this scenario, the action we want to take (adding the two numbers) is dep...Jul 29, 2023路5 min read
asally.hashnode.devJavaScript ArraysAn array is a special way of storing and organizing data in programming. An array is an ordered collection of values. Arrays can also be defined as special variables that can store multiple values in an ordered fashion. Characteristics of JavaScript ...Jul 26, 2023路4 min read