#functions
Read more stories on Hashnode
Articles with this tag
def greet(msg="Good morning!", name): return "Hi! " + name + ', ' + msg print(greet("John")) # Syntax Error print(greet("Mary", "How do you...
Introduction in this article, I will be talking about pure vs impure function, and why it is a good practice to always try to use pure function if we...
Introduction In this article, I will be talking about Intermediately Invoked Function Expression (IIFE), and why we need an IIFE. IIFE...
Introduction In this article, I will talk about common mistakes that people come across when they do not know the difference between function...