Anil Moharanaanilmoharana.hashnode.dev·Feb 7, 2025Array: How Sadhabas Used Arrays to Manage Their TradeLong ago, there was a port town named Kalinga. This town was famous for its skilled Sadhaba traders, who sold everything from exotic spices to finely crafted gold and silver ornaments. Every Sadhaba kept records of the trades in thick dusty ledgers a...JavaScript
RITUPARNA SARKARcodestar.hashnode.dev·Feb 6, 2025" The Mysterious Incident that Happened With Us " 🦇HELLO DEVELOPERS! Today I’ll Share you a story of my life! A story that has remained unanswered until today. While reading it, we’ll also learn about different Array Methods used in JavaScript and their usecases. So tie-up your seatbelts and let’s ju...6 likes·57 readsChaiCode
Harshita Sharmaharshitawrites.hashnode.dev·Feb 6, 2025Check If an Array is a Subset of Another ArrayToday, I solved a basic array problem, but it gave me valuable insights into how my thought process works when approaching a problem. Simple questions like these help in analyzing problem-solving patterns. Thanks to my DSA interviewer, I was able to ...DSA
WAQAS AJMALtech-logix.hashnode.dev·Feb 4, 2025Hit Sixes with JavaScript🏏 Javascript Introduction: Code Like a Captain JavaScript isn’t just code it’s a powerhouse for taming data, where arrays and objects act as your ultimate playmakers. Think of arrays as your batting order (a lineup of values) and objects as player p...21 likes·97 readsxpertlogix
Shivendra sonkarshivendra-sonkar.hashnode.dev·Feb 5, 2025Array-mazing JavaScript Tricks: Functions That'll Make You Go Wow!Introduction In the JavaScript array is nothing but an object and that grows dynamically means when you push or delete the element from array JS engine will automatically handle. initially when you create an array by default size will be zero and as ...ChaiCode
Shivam Vermajavascriptafficionado.hashnode.dev·Feb 4, 2025Building a Time Machine with JavaScript ArraysThe Idea : 💡 In a world where future is unknown and past is written in history books, arrays hold the power to unlock both. JavaScript arrays allow us to leap through moments in time with ease and precision. Do you want to know how arrays harness su...46 likes·79 readsChaiCode
Deepak Singhjs-naruto.hashnode.dev·Feb 4, 2025JavaScript Array Methods: The Shinobi Way⚡️Hey fellow developers and Naruto fans! Today, we're going to explore JavaScript array operations using our favorite Anime as reference (Naruto). The Initial Squad Formation 🏯 Let's start by creating our initial array of Team 7: let squadSeven = ["Na...14 likes·36 readsChaiCode
Ram Bhardwajrambhardwaj.hashnode.dev·Feb 2, 2025How JavaScript Array Methods Helped Samay Raina Create “India’s Got Latent”One day, Samay Raina sat in his room, sipping chai, wondering—"What if there was a talent show where people showcased completely random skills, like solving a Rubik's cube blindfolded while rapping?" And just like that, India’s Got Latent was born—a ...133 likes·578 readsJavaScript
Anjaneyajavascript-array-methods.hashnode.dev·Feb 3, 2025JavaScript Surgeons - Array[ ]Visualize team management and project execution! Here’s how JavaScript array methods can conceptually represent different aspects of forming and managing a software development team: 1. Team introduction - map() The company recruited 12 members for ...JavaScript
Ganti Sai Sagarsdetinsider.hashnode.dev·Jan 22, 2025Sorting an ArrayListSorting an ArrayList Using Collections.sort() in Java In Java, we can easily sort an ArrayList using the Collections.sort() method, which is part of the java.util.Collections class. This method sorts the elements of the ArrayList in ascending order b...Collection Framework