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·55 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
Mallikarjun Komarrajumallikarjun.hashnode.dev·Sep 17, 2023Mutation and Immutability in JavaScriptDiscussion What are Mutation and Immutability? Why Immutability. Better tests and easy to debug. Functional Programming approach and pure functions. Deep copy v/s Shallow copy. Ways to create copies of objects What is Mutation and Immutabilit...DiscussJavaScript
Kaif Khankwiz.hashnode.dev·Sep 16, 2023Functions vs MethodsOverview Function A function is a set of instructions that is used to perform a specific task. There are usually two types of functions. Library Functions User-defined Functions Example of a Function in C // return type void void printTheWord(){ ...Discuss·28 readsGeneral Programming
M'mah Zombommahzombo.hashnode.dev·Sep 15, 2023(*, /) Beyond Multiplication and Division - Part1It is commonly known that the asterisk "*" is used for multiplication, while the forward slash "/" is used for division in Python. This is true, but many don't know that these operators can do more. What's so special about them? When these operators ...Discuss·5 likes·68 readsPython-NotesPyhton
David Sunday Bayodedavidbay.hashnode.dev·Sep 15, 2023Replacing React Hooks With React Redux State Management Library Part 1Using JavaScript to build complex web applications can get tiring when repetitive steps are involved, in such cases reusable logic is wasted, for instance, if I wanted to add a feature or state to an application globally. Thankfully, developers smart...DiscussReact
bearbear-with-us.hashnode.dev·Sep 14, 2023Is OCaml a tough programming language?Short answer: No if you take in the reasoning of the language by itself independently of the context. Long answer: Ocaml is a functional language. The majority of engineers have received education in functional programming, but a heavy training on im...DiscussProgramming Languageocaml
sai sri vinay reddy sangam 🇮🇳forSolidity30solidity30.hashnode.dev·Sep 12, 2023Function modifiers in SolidityIn general, there are access modifiers in well known programming languages like Java, .Net to restrict the visibility or accessibility of functions, variables etc.. They are defined using the keywords like public, private, protected, internal... Simi...DiscussSolidity