© 2023 Hashnode
#javascript-modules
Learning to code is a transformative process that opens doors to limitless possibilities in today's digital world. However, embarking on this journey is not without its challenges. From grappling with…
Currying is a concept where a function with multiple arguments is divided into multiple functions having 1 or 2 arguments. Syntax of Currying Function function multipleargs(arg1, arg2, arg3, arg4) curriedfunction(arg1)(arg2)(arg3)(arg4) T…
In this article, we will explore the fundamental concepts behind Call, Apply, and Bind methods and examine how they can be utilized to enhance your JavaScript code. By the end of this article, you will have gained a clear understanding of t…
I was thinking about an exercise that could aid someone with their javascript learning, and this came to mind because it is important to note that not everyone has access to study and comprehend the fundamentals of javascript. So, in this p…
Invention(December 1990) On Christmas Day 1990, Sir Tim Berners-Lee introduced the world's First web browser in Switzerland. on the time first server also created on the NeXT Computer System HPCA(The…
Timi is moving to a new apartment. The movers are instructed to take his belongings, including his bed, couch, kitchen utensils, and other furniture, to his new apartment. After arriving at his new ap…
Hello & Assalam o Alaikum Everyone! 👋 As a JavaScript developer, it's essential to write clean and maintainable code to ensure the longevity of your application. Clean code is easy to read, understan…
Set:- a set object is a collection of unique data. In set we can only store the unique value. Values will store in the insertion order so we can iterate over the set for getting the element in the insertion order. Syntax: const mySet = new …
JavaScript is a versatile programming language that allows developers to write efficient and powerful code. One of the language's most prominent features is higher-order functions. Higher-order functi…
Data visualization is an essential tool for making sense of complex data sets. In Java, there are several libraries and frameworks that make it easy to create stunning and informative visualizations. In this blog, we explore some of the mos…