haresh lakhwanidailylearn.hashnode.net·Apr 15, 2023The Power of Pure Functions: Making Your Code More Predictable and MaintainableIn this blog, we are going to learn about some of the javascript functions related topics that are mainly asked in interviews but we also use these in our day-to-day code. Pure Functions: The function which has no side effects and is given the same ...Discuss·35 likes·65 readsJavaScript
Krzysztof Kałamarskikkalamarski.hashnode.net·Dec 9, 20225 lessons I've learned from functional programming as a TypeScript developerOver my 10 years of working as a software engineer, I've tried many different programming languages. In my professional career, I started with PHP, later switched to JavaScript and now I'm mostly working with TypeScript. But, like many other develope...Discuss·3 likes·434 readsFunctional programmingTypeScript
Syed Jafer KforMake Readingsyedjaferk.hashnode.net·Sep 25, 2022Pure function vs Impure function in JSKey rules of a function While writing functions we should take care of certain conditions. We need to make sure that our functions are, Predictable: It produces a predictable output for the same input. Reusable: Can reuse the function at multiple ...Discuss·2 likes·97 readsCourse: Learn Javascript With UsJavaScript
haresh lakhwanifordailylearn.hashnode.net·Apr 15, 2023The Power of Pure Functions: Making Your Code More Predictable and MaintainableIn this blog, we are going to learn about some of the javascript functions related topics that are mainly asked in interviews but we also use these in our day-to-day code. Pure Functions: The function which has no side effects and is given the same ...Discuss·35 likes·65 readsJavaScript
CS ToraforCS Toracstora.hashnode.net·Mar 22, 2023Functional Programming In JavaScript for BeginnersThis is the first of a five-part series What is Functional Programming? Functional programming is a style of creating programs that: Encourages the use of functions that are self-dependent and do not modify or depend on external values outside of th...Discuss·1 like·102 readsJavaScript
Raj KumarforRajkumartechieraj.hashnode.net·Mar 4, 2023Mastering React: Techniques to Optimize Your Web ApplicationAs web applications become increasingly complex, optimizing their performance has become more important than ever. React is a popular JavaScript library used for building web applications that are fast, scalable, and easy to maintain. In this blog po...Discuss·1 like·26 readspure functions
Sambhavi DhanabalanforSambhavi's Notescodessam.hashnode.net·Feb 22, 2023Python : Pure functionsWhether you work as an application developer or a data engineer, there will always be a need to clean, beautify, and bring data to a prescribed format. At such times, the following functions prove to be a lot useful. map filter zip reduce I use...DiscussPython 3
Vinay KushwahaforVinay Kushwaha's Blogiamvinayvk.hashnode.net·Feb 3, 2023What are Pure functions?While working on the projects we always get to hear the term Pure functions, but what are Pure functions and why should we use Pure Functions? Let's find out. Pure Functions are functions that have the following characteristics- Pure functions alway...DiscussFunctional Programming
Dhawal PandyaforDhawal Codesdhawalpandya01.hashnode.net·Jan 27, 2023What is a Pure Function?In computer science, a pure function is a function that, given the same input, will always return the same output and have no side effects. They do not modify the state of the system or have any observable side effects such as network or database cal...Discuss·1 like·34 readspure functions
OneUttersforOneUttershijklmnop.hashnode.net·Dec 24, 2022An introduction to functional programmingFunctional programming is a programming paradigm that focuses on the use of functions to solve problems. In contrast to imperative programming, which relies on changes to mutable states, functional programming emphasizes the use of immutable data and...Discuss·53 readsGeneral Programming
Krzysztof KałamarskiforKrzysztof Kalamarskikkalamarski.hashnode.net·Dec 9, 20225 lessons I've learned from functional programming as a TypeScript developerOver my 10 years of working as a software engineer, I've tried many different programming languages. In my professional career, I started with PHP, later switched to JavaScript and now I'm mostly working with TypeScript. But, like many other develope...Discuss·3 likes·434 readsFunctional programmingTypeScript
elcharitas.(eth|lens|crypto|any)forelcharitas.deviamelcharitas.hashnode.net·Dec 5, 2022Superpowered JavaScript Pure Functions 😇In JavaScript, a function is a block of code that is designed to perform a specific task. It can take input in the form of arguments and can return a value as output. Functions are an essential part of JavaScript, and they are used to make the code m...Discuss·1 like·55 readssuperpower
Casper Weiss BangforCasper Weiss Bang's blogcwb.hashnode.net·Nov 12, 2022Yes, IO is possible in a functional worldWhenever I share my enthusiasm regarding functional programming and pure functions, other developers are often skeptical, and I've heard the following point possibly a million times: Functional programming might be cool in academic contexts, but in ...DiscussFunctional Programming