Shivam DubeyforGo Tutorialgo-tutorial.hashnode.dev·Nov 15, 2024Unlocking the Power of Functions in Go: A Beginner's Journey to MasteryFunctions are the building blocks of any programming language, and Go is no exception. Functions allow us to organize code, reduce redundancy, and make our programs easier to read and maintain. In this article, we will explore: Defining and calling ...DiscussGo Language
sujithamypersonalblog.hashnode.dev·Nov 14, 2024Convex and Non-convex functionsA convex function and a non-convex function differ primarily in the shape of their curves and in the nature of their optimization landscapes, which impacts how we can use techniques like gradient descent to find minimum points effectively. Convex Fun...DiscussMachine Learning
Sandeep Singhsandeepdevhub.hashnode.dev·Nov 13, 2024Rest Parameters vs. Spread Syntax: Simplified Explanation-Hi 👋 fellow developers! My name is Sandeep Singh, and I am an aspiring web developer. Today, I am back with an interesting and useful JavaScript concept: Rest Parameters and Spread Syntax. In this article, I will aim to make these two concepts clear...Discussjavscript
Krishnat Ramchandra Hogalekrish27.hashnode.dev·Nov 7, 2024Understanding Functions, Lambda Functions, and Modules in PythonProgramming often involves repetitive tasks, and Python provides powerful tools to avoid redundancy through functions and modules. With functions, you can reuse code that performs specific actions. Modules allow you to organize your code into separat...Discuss·1 likelambda
gayatri kumargeekee.hashnode.dev·Nov 5, 2024Function Frenzy: Advanced Functionality!Imagine stepping into a bustling factory where every station produces a different product. Each station in this factory represents a function in JavaScript, meticulously crafting small tasks that contribute to the larger system. In programming, funct...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·50 likesWeb Developmentjs
Faria Karimfariakarim.hashnode.dev·Oct 31, 2024Ballerina Basics: 5 Fundamental Programming ConceptsIntroduction: This blog covers five fundamental programming concepts—variables, control structures, functions, data structures, and OOP—illustrated with examples in Ballerina. Mastering these basics is key to building efficient applications. 1. Varia...Discussfundamentals
Sai Prasanna Maharanasaimaharana.hashnode.dev·Oct 28, 2024Python Functions: A Comprehensive GuideIntroduction In Python, a function is a reusable block of code that performs a specific task. Functions help break our program into smaller and modular chunks, making it more organized, manageable, and reusable. Python functions can accept inputs (pa...DiscusspythonPython
Arnav SinghforPython for Noobspythonfornoobs.hashnode.dev·Oct 21, 2024Python Functions: Defining, Calling, and Using Parameters EffectivelyIntroduction: What is a Function in Python? A function is a block of organized, reusable code that is used to perform a single, related action. Functions help reduce repetition, make code more flexible, and make debugging easier. In Python, functions...Discuss·11 likesPython for Noobsfunctions
Brandon Feinsteincodesteep.hashnode.dev·Oct 21, 2024JavaScript Function SyntaxFunction declaration function multiply(a, b) { return a * b; } Function declarations are a common in JavaScript, they are hoisted in that they can be declared after they are called like this: const result = multiply(5, 5); function multiply(a,...DiscussJS & TS BasicsJavaScript
Archana Prustyarchana77.hashnode.dev·Oct 8, 2024Day 19 Guide: How to Master Anonymous and Generator Functions in PythonIntroduction : Welcome back to my Python journey! Yesterday, I laid the foundation with control structures and functions in python. Today, I dove into Anonymous and Generative function, Let's explore what I learned! Anonymous Function : some time we ...Discuss2Articles1Week