Preetipreetisays.hashnode.dev·Jul 17, 2024Closure in JSA function along with it's lexical scope inside a function is called closure. example: let's take a we want to increment a value by clicking a button, the basic way we can do it by is using a varible which will be incremented on every click. var clic...Discussclosure
aisha javedcyberurdu.hashnode.dev·Jun 25, 2024World Most Dangerous Hacker Groups Dark Web"From hacktivists to cyber mercenaries, meet the players in cyber threats: the world's most dangerous hacker groups." "ہیک ٹیوسٹ سے لے کر سائبر کرائے کے افراد تک، سائبر خطرات میں اضافہ کرنے والے کھلاڑیوں سے ملیں: دنیا کے خطرناک ترین ہیکر گروپس۔" دنی...DiscussHacker Groups
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·May 31, 2024Important Terminologies in JavaScript1. Function Statement A function statement is a simple way of creating a function: function a() { console.log("a called"); } This simple way of creating a function is known as a function statement. 2. Function Expression A function expression is w...Discuss·10 likes·41 readsJavascript Basicsnamed function expression
Pasindu Basnayakepasindubb.hashnode.dev·May 18, 2024JavaScript Functions Explained: The Essential Guide for BeginnersOnce upon a time, in a magical land called Codeville, there were these little helpers called Functions. Now, imagine Functions as little wizards who can do special tasks for us. Let's meet our first Function, named MagicMaker. MagicMaker's job is to ...Discuss·1 likeJavaScriptjavascriptfunctions
Ricardo Rocha // 👨💻bittonic.hashnode.dev·Mar 25, 2024🦸♂️ Unveiling the Power of JavaScript Functions: Your Code's SuperheroesLet's dive into 🤿 the wonderful world of JavaScript functions – those handy chunks of code that make your life easier. Think of them as your code's superheroes, ready to save the day whenever you call upon them! 🔧 Function 101: The Building Block S...DiscussJavaScript
Jinali Ghogharijinali.hashnode.dev·Mar 22, 2024Dart Anonymous Functions: Higher-Order Functions with CollectionsAn anonymous function in Dart is like named function but they do noy have names associated with it. An anonymous function can have zero or more parameters with optional type annotations. In dart most of the functions are named functions we can also ...DiscussDartDart
Jinali Ghogharijinali.hashnode.dev·Mar 21, 2024Dart Functions: Anonymous Functions or Lambda ExpressionLambda functions are a short and simple way to express tiny functions are also known as anonymous functions or closures. They are functions without a name that can be used inline within the code. return_type var_name = (parameters)=> expression; Not...Discuss·45 readsDartDart
Jieun Leezeunny.hashnode.dev·Mar 12, 2024JavaScript: 어떤 방식으로 함수 정의하는 것을 선호하세요? - (1)들어가며 인터뷰에서 "어떤 방식으로 함수 정의하는 것을 선호하세요?" 라는 질문을 받은 적이 있다. 그 당시에는 JS에 관한 공부가 부족했기에 정의 방식에 따라 어떤 차이가 있는지 확실하게 알지 못했다. 고로 대답은 했지만 그에 대한 근거가 부족했다. JS를 공부하고 나서 이 질문의 큰 그림을 알게 되었다. 함수 정의 방식에 따라 스코프, 호이스팅, this 등 JS의 다른 개념들이 숨어있었고 그 개념들까지 제대로 알고 있느냐를 판단하기 위한 ...Discuss·58 readsJavaScript
Shefalidevshefali.hashnode.dev·Feb 5, 2024Anonymous and Arrow Functions in JavaScriptJavaScript provides various ways to define and use functions. Two commonly used types of functions are anonymous functions and arrow functions. In this blog, we will learn about these two functions in detail. Let's get started!🚀 Anonymous Functions ...DiscussWeb Development
Jindřich Ivánekjindraivanek.hashnode.dev·Jan 25, 2024F# tips weekly #3: piped lambda functionUsage of lambda functions as parameters for another function is well known. Less commonly used is the application of lambda functions in other contexts. We can leverage the fact that a lambda function is a value and use it wherever we can use a norma...Discuss·3 likes·521 readsF# tips weekly#fsharp