RHrenan hafsarinlinux-notes.hashnode.dev·May 15 · 25 min readgrep and find Commands in LinuxBoth commands sometimes are confusing because they can be used to "search" something. However, they behave differently. Command Searches for Example question find Filenames, directories, file ty00
SCShravan Chaudhariinshrvn.hashnode.dev·Apr 28 · 8 min readArray Methods Every Developer Must KnowThis article covers the full picture: how to create arrays with static methods, how to mutate them, how to read from them without changing them, and how to iterate over them with the powerful trio of 00
JJorgeinbuildingagain.hashnode.dev·Mar 27 · 7 min readFiltering Financial Data Introduction In finance and accounting, you rarely work with all your data at once. Often, you need to isolate specific transactions: expenses over a certain threshold, payments from a particular ve00
ARAradhya Rayinjs-a-beginners-guide.hashnode.dev·Mar 15 · 8 min readArray Methods You Must Know: A Practical Guide to push, pop, map, filter, reduce, and forEachArrays are one of the most fundamental data structures in JavaScript. They allow developers to store and manipulate collections of values efficiently. However, working with arrays effectively requires00
PKPawan Kushwahinannodiya.hashnode.dev·Mar 15 · 5 min read#14 Array Methods You Must KnowArrays are fundamental to JavaScript. Think of an array as a digital list—whether it's the products in a shopping cart, users on a social media feed, or a playlist of songs, you will spend a lot of ti00
SSSofiya Shaikhinsofiyablogonjs.hashnode.dev·Mar 15 · 7 min readArray Methods You Must KnowYou know how some things just click the moment you actually use them? Array methods are like that. Once you get them, you'll wonder how you ever wrote JavaScript without them. Adding & removing from t00
LGLalit Gujarinjavascriptcontent.hashnode.dev·Mar 14 · 6 min readMaster Array Methods in JavaScriptStop writing clunky for loops for everything. Learn the 6 array methods that every JavaScript developer reaches for, explained simply with real examples. push() and pop() Think of an array like a stac00
PKPritesh Kitturinpriteshcodez.hashnode.dev·Mar 14 · 6 min readJavaScript Array Methods Explained for Beginners: push, pop, map, filter & reduceWhen learning JavaScript, arrays are one of the most important things you’ll work with. Arrays store multiple values, and JavaScript provides many built-in methods to manipulate them easily. In this b00
SPSaurav Pratap Singhinsaurav26.hashnode.dev·Mar 13 · 6 min readDay to Day Array MethodsIn my last blog, we went through the basics of arrays in JS, this time we would be levelling up a little and would discuss the common array methods that come handy every now and then, but before that 00
MAMOUNSHI AFRID HOSSAINinmounshiafridhossain.hashnode.dev·Mar 12 · 5 min readArray Methods You Must KnowLet's say Afrid is building a shopping cart for his new website.He stores the items in a simple JavaScript Array: ['shoes', 'shirt', 'watch']. Suddenly, a customer adds a hat. Then they remove the shi00