dsaritik.hashnode.devSet and Multiset in C++Set is an associated container provided by the Standard Template Library (STL) that store collections of unique elements. Properties of set:- It stores the value in sorted order. It stores onnlu unique elements. Elements can only be inserted or de...Jun 23, 2024·4 min read
joyofreact.hashnode.devProps and HookIn the 1st article of Step into React I've covered the required setup for React environment and stepped into Hello World. In this article, I'll primarily focus on React Props and Hook. In React, props is a keyword which implies "Properties" and it's ...Apr 20, 2024·5 min read
joyofreact.hashnode.devStep into ReactIn the previous articles, we learned about Functions in JavaScript , Functional Programming and More on Functional Programming with different problem statements. We've already played with DOM and event listeners now is the time to know that JavaScrip...Apr 5, 2024·4 min read
function.hashnode.devMore on Functional ProgrammingAs we've already seen the use of forEach ,map and filter in the previous article Functional Programming with various approach and example. Now let's try to get the concept reduce, every and sort in detail. reduce() : This method is used when we want...Mar 23, 2024·6 min read
function.hashnode.devFunctional ProgrammingA paradigm that treats computation as the evaluation of mathematical functions on Iterable objects is called Functional Programming. A set of certain statement is defined to perform the same operation on any data type for which user has defined. We u...Mar 21, 2024·7 min read