Ganesh Yadavganesh3142.hashnode.dev·Oct 3, 2023Object Oriented Programming (OOP): PART 1In this article, we will delve deep into one of the most important programming paradigms used whenever it requires a large scalability called Object Oriented programming (OOP). This article will be basically divided into two Parts: Objects and Class...DiscussJavaScript
Favour Georgepsycode.hashnode.dev·Oct 3, 2023Boosting Code Reusability: A Guide to Python FunctionsAlthough most if not all developers while learning how to code have come across the concept of functions, we haven’t taken the extra time to understand them outside the context that they are reusable blocks of code. In this article, I intend to go a ...DiscussPython
Udai Chauhanudcode.hashnode.dev·Oct 2, 2023Higher-Order FunctionsToday we will learn about Higher-Order Functions. We’ll learn how to use “abstraction” in programming by writing functions. In addition to allowing us to reuse our code, functions help to make clear, readable programs. Higher-order functions are fun...DiscussJavaScript
Pravin Jadhavpravinjadhav.hashnode.dev·Oct 1, 2023"Understanding JavaScript Functions: Statements, Expressions, and First-Class Functions"Function Statement: A function statement is a way to create a function in JavaScript using the 'function' keyword and providing a name to the function. Functions in JavaScript can be assigned to variables, treating functions as values, which is a pow...DiscussJavaScript
Md Nayeemmd5nayeem.hashnode.dev·Sep 29, 2023Functional Programming vs. Object-Oriented Programming: A Simple ComparisonIntroduction: Functional Programming and Object-Oriented Programming (OOP) are two different ways of writing computer code. They both have their strengths and weaknesses, and in this article, we'll explain the key differences in a way that's easy to ...DiscussFunctional Programming
Jamesjames-reed.hashnode.dev·Sep 24, 2023JavaScript Functions and the Call StackIntroduction In this article, I am going to explain the benefits of functions including how to declare and then invoke them. Then we will take a look at how the JavaScript compiler looks at and runs our code. Lastly, I will go through the concepts of...DiscussJavaScript
Oluchukwu Ughagwuoluchukwu-ughagwu.hashnode.dev·Sep 21, 2023Return Statement in a Void Function: A Comprehensive GuideUnderstanding Void Functions Void functions in programming are known as operations that do not have a return value. When you want to execute an instruction without needing a result, you make use of a void function. You may be wondering; but a print s...Discuss·6 likes·65 readsc programming
M'mah Zombommahzombo.hashnode.dev·Sep 20, 2023(*, /) Beyond Multiplication and Division - Part2In the previous article, I introduced the special powers of the asterisk * and the forward slash /. If you missed it, you can check it out here: Part 1. In this article, we will be looking at how to use the asterisk and forward slash together in a fu...DiscussPython-NotesPython
Elvis Davidtechlake.dev·Sep 18, 2023Scala for Data Engineering: Harnessing the Power of Functional ProgrammingYou want to write a program that handles data. Which language should you choose? Introduction In the dynamic world of data engineering, where processing and managing vast amounts of data have become paramount, programming languages that offer flexibi...DiscussData EngineeringScala
Yuvraj Shrirameyuvrajshrirame.hashnode.dev·Sep 18, 2023Object Methods in JavaScriptJavaScript, often referred to as the "language of the web," plays a pivotal role in creating interactive and dynamic web applications. At the heart of JavaScript's power lies its ability to work with objects, and a crucial aspect of this is understan...DiscussFull Stack Web DevelopmentWeb Development