Bharat Singhbharatblogs.hashnode.dev·Dec 18, 2024Functions in JavaScriptHi Folks, In this article we will be learning about functions in JavaScript. Functions are the heart of JavaScript. Everything in the JavaScript is based on functions. Functions:- Functions are building block in any programming language, Functions ma...HTML5
Sandeep Singhsandeepdevhub.hashnode.dev·Dec 17, 2024Exploring setTimeout and setInterval: JavaScript Timing Functions ExplainedHi 👋 fellow developers, My name is Sandeep Singh, and I am an aspiring full-stack developer. If you are a beginner, you have probably tried to create a stopwatch or timer as one of your projects. In doing so, you may have come across the setTimeout ...SetTimeout
Pavan Varmapavan-varma.hashnode.dev·Dec 17, 2024Java Functions/Methods: A Beginner's Guide to Writing Efficient CodeIntro: In this article, I would like to share some insights about... Functions/Methods Works Scoping Shadowing Variable Arguments Function Overloading let’s goooo..🙂🔥🔥🔥✌ Functions: A Function/Method is a block of code that only runs when ...Programming Blogs
Gurjeet Singh Virdeegurjeet.hashnode.dev·Dec 16, 202430 Days of Appwrite: A Comprehensive JourneyIntroduction Welcome to 30 days of Appwrite, an exciting series where we'll explore Appwrite, an open-source backend server designed to make backend development a breeze. Whether you're a seasoned developer or just starting, Appwrite offers a powerfu...1 like·43 reads30 Days of Appwrite30-days-of-appwrite
Hassanigocoding.hashnode.dev·Dec 6, 2024🌟 Mastering call(), apply(), and bind() in JavaScript – A Beginner's GuideUnlocking the Power of call(), apply(), bind(), this, and Higher-Order Functions in JavaScript 🔓🚀 Hey there, JavaScript explorer! 👋 Let’s dive into three super handy methods: call(), apply(), and bind(), while also unlocking the secrets of the mys...1 likeJavaScript
Lim Woojaejaylog.hashnode.dev·Dec 5, 2024[Python Debugging] SyntaxError: non-default argument follows default argument & How Function Works in Pythondef greet(msg="Good morning!", name): return "Hi! " + name + ', ' + msg print(greet("John")) # Syntax Error print(greet("Mary", "How do you do?")) # Syntax Error Look at the code above and think of why that would cause an error. When you declar...DebuggingPython
Amulyaawscloudbasics.hashnode.dev·Dec 4, 2024Understanding Functions, Modules, and Packages in PythonFunctions in Python Functions are reusable blocks of code that perform a specific task. They help in making the code more readable, modular, and easier to debug. Here's a simple example of a function in Python: def add(a, b): return a + b result...pythonfunctions
Sujit Nirmalblackshadow.hashnode.dev·Dec 1, 2024Understanding Helper FunctionsHelper functions are small, reusable pieces of code designed to perform specific tasks. In machine learning, they can handle tasks such as data normalization, feature scaling, data splitting, and more. By abstracting these tasks into functions, you c...helper functions in machine learning
Subbu Tech Tutorialssubbutechtutorials.hashnode.dev·Nov 30, 2024Mastering Python Functions: Simplified Guide to Logical Flow and ExecutionIntroductionFunctions are a fundamental concept in Python and serve as the building blocks of effective programming. Although they are a basic concept, functions are incredibly versatile and play a crucial role in making code reusable, organized, and...Python
Leticia AkwueforThe Cloudville Blueprintscloudville.hashnode.dev·Nov 28, 2024What is Azure Functions?Azure Functions is like magic for developers! It’s a serverless solution that lets you write less code, skip server maintenance, and save costs. Imagine focusing only on what matters—your code—while Azure takes care of the infrastructure. There is ...functions