Sayuri Kamblesayurikamble.hashnode.net·Feb 23, 2021Introduction to Functional ProgrammingIn Functional Programing, we want express our whole program in terms of functions. Functional Programing is Declarative. Which means we focus more on what to do instead of How to do First lets understand why Functional Programming is so important. ...José Torres and 13 others are discussing this14 people are discussing thisDiscuss·171 likes·4.4K readsFunctional ProgrammingAwesome work! Keep it uppppp! 3
Sumudu Siriwardanasumudusiriwardana.hashnode.net·Sep 27, 2021JavaScript Functions: Explain Like I'm FiveIf you are a newbie to programming and JavaScript, you might first find it hard to grasp the concept of functions. When I first learned about functions, I thought I got it all right. Then, when I tried to apply it in some code challenges, I got more...Kolade Chris and 12 others are discussing this13 people are discussing thisDiscuss·125 likes·2.5K readsJavaScript
Luísa Ribeiro Bezerraluisarbezerra.hashnode.net·Jan 13, 2021FeaturedFunctional Programming Principles in JavaScriptThe art of problem-solving using... functions! Functional Programming is a programming paradigm that relies on the use of functions whether they are pure or isolated functions, avoiding changing-state and mutable data. In general, the use of functio...TK and 3 others are discussing this4 people are discussing thisDiscuss·121 likes·2.6K readsFunctional Programming
Abhishek Sharmaabhisheks008.hashnode.net·Apr 23, 2023Overview of Functions in C programming languageOverview of Functions A function in C is a block of code that performs a specific task. Functions help to modularize code and make it easier to read, write, and maintain. In C, a function is declared using the function keyword followed by the return ...Discuss·29 readsfunctions
Shreya Trivedi shreya-trivedi.hashnode.net·Apr 18, 2023Javascript GeneratorIntroduction Imagine you're trying to write a program that needs to process a large amount of data. You could do this using a regular function, but what if you only need to process part of the data at a time? Using a regular function would require yo...Discuss·6 likes·170 readsJavaScript
Elucian MoiseforProgramming Languagessagecode.hashnode.net·Apr 16, 2023Rust FunctionsIn computer science, a function is a self-contained block of code that performs a specific task and can be called from other parts of a program. Functions are an important concept in programming because they allow code to be reused and organized in a...Discuss·1 like·29 readsRust LanguageRust
Tanisha Jaiswaltanishaaaa.hashnode.net·Apr 16, 2023Functions in DartDart is a modern object-oriented programming language designed to create scalable, robust, and efficient mobile and web applications. One of the essential components of Dart programming is functions, which are self-contained blocks of code that perfo...Discussfunctions
Mubashir Ahmedmubashir61.hashnode.net·Apr 15, 2023JavaScript Interview QuestionsHey amazing reader🤗, welcome back to the series of JavaScript learnings Today is 9th day if #30daysOfJs. Today we are going to discuss some of the interview questions asked in JavaScript interviews. Let's goo 🚀🚀 What are first-class functions? A p...Discuss·83 reads30 Days of JS30daysOfJs
Promise Dashpromisedash.hashnode.net·Apr 10, 2023Functions in JavaScriptFunctions are one of the most interesting & most important parts of any programming language. So what are functions, and why should we use them? A JavaScript function is a block of code designed to perform a particular task. We will often need to per...Discuss·2 likesWeMakeDevs
Samuel Olakadaolakadasami.hashnode.net·Apr 8, 2023JavaScript: What is "this"Introduction Hello! Welcome to my blog!!! In this article, we are exploring this keyword in JavaScript The return value of this keyword in JavaScript is a source of confusion for many beginner JavaScript developers. Some avoid using it, while others ...Discuss·9 likes·81 readsJavaScript
Guillaume Duhanguillaumeduhan.hashnode.net·Apr 8, 2023Edge functions with Supabasehttps://www.youtube.com/watch?v=wJtuF6A8uXk Edge functions are a powerful feature offered by Supabase, a popular open-source Backend-as-a-Service (BaaS) provider. Edge functions enable developers to write and deploy serverless functions that run on...Discusssupabase
Elucian MoiseforProgramming Languagessagecode.hashnode.net·Apr 6, 2023Go: FunctionsFunctions in programming are reusable blocks of code that perform a specific task. The concept of functions allows developers to write modular code that can be reused multiple times in a program, rather than typing out the same block of code repeated...Discuss·27 readsGo Languagegolang
Sachin Palgeekpython.hashnode.net·Apr 6, 2023Python sort vs sorted - Detailed Comparison With CodeWe'll compare Python list sort() and sorted() functions in this article. We'll learn about these functions, such as what they are and how they differ programmatically and syntactically. Python sort() and sorted() are used to sort the data in ascendin...Discuss·213 readsPython