ByteScrum TechnologiesforByteScrum Technologiesblog.bytescrum.com·Oct 30, 2024Ultimate Guide to JavaScript Utility FunctionsJavaScript utility functions, commonly known as utils, are reusable helper functions that simplify and optimize code. They abstract out common operations into smaller, easy-to-maintain pieces of logic, enhancing both readability and reusability. In t...Discussunderscore.js
ankita yadavankita-yadav.hashnode.dev·Jul 17, 2024Top 10 Lodash Functions in my Everyday CodingEfficiency is crucial nowadays. We often face repetitive tasks and boilerplate code. Lodash, a JavaScript utility library, simplifies these tasks with a rich set of functions for arrays, objects, strings, and more.Some top lodash functions that I use...Discuss·5 likesWomenWhoTech
Nritam Kumarkfbr392.hashnode.dev·Jul 2, 2024Writing Lodash's Chunk method from scratchThe _.chunk method in Lodash is a utility function that splits an array into groups of a specified size. Each group is returned as a sub-array, and the final group may contain fewer elements if there are not enough elements to fill it completely. Thi...Discusslodash
nishchal singhnishchal.hashnode.dev·Feb 25, 2024Object Cloning in JavascriptWhile coding in Javascript have you ever encountered a situation where you needed to copy an object? and when you try to copy an object, you face some issues like all of the properties are not cloned, or when changing the copied object somehow the or...Discuss·28 readsJavaScript
Panda Codespanda-code.hashnode.dev·Jan 14, 2024In Defense of Simple Lodash Functions"Hey, dumb question," the new guy said to me, "Why would you use a library for 'isString'? It's not really more readable"."I'm not sure what you mean," I replied. I hadn't even looked away from my screen yet."It seems like a very easy thing to check....DiscussJavascriptJavaScript
Xolile Speelmansxolile.hashnode.dev·Jun 12, 2023How to create an AWS Lambda Node.js container image with dependencies?Description In this article we will be going through the steps of packaging our Lambda function Node.js code and dependencies into a container image. For illustration purposes we will be using Lodash library as our dependency for our Lambda function ...DiscussNode.js
Anjan Talatamanjantalatam.hashnode.dev·Mar 26, 2023Lodash get() does not default for value nullIt's been 1+ years of using lodash. I have no complaints except for it being too large on the bundle. However, recently I have found an issue that I thought was handled by lodash.get(), but it is not. 🫠 The Story _.get() is the most used utility fun...Discuss·10 likes·434 readsReact
Gourav Ghosalgg221b.hashnode.dev·Mar 2, 2023All about object copying in JavaScriptHow often did you attempt to clone an item in Javascript and the result wasn’t the very thing you anticipated? In this article, we will clarify the essential ideas driving cloning to guarantee that you generally utilize the best choice. Differentiati...DiscussWeb Development
Yash Karankekarankeyash.hashnode.dev·Feb 27, 2023Understanding Shallow Copy vs Deep Copy using lodashCloning an object in JavaScript is an important operation that allows you to create a copy of an existing object without modifying the original. This can be useful in many situations, such as when you want to make changes to an object without affecti...Discuss·1 like·417 readslodash
Manuj Jainmanuj8941.hashnode.dev·Feb 17, 2023Demystifying Libraries and Frameworks: Understanding the Key DifferencesI've been working as a technical writer and a software developer for a few years now, and one thing that always confused me was the difference between libraries and frameworks. I used to think they were the same thing, but I recently learned that the...Discuss·33 readslibrary