Sandeep Singhsandeepdevhub.hashnode.dev·Sep 11, 2024Simplifying the forEach Method : A Beginner’s GuideIf you are a JavaScript beginner, you must have come across the forEach method. It might look a little bit quirky at first, but believe me, you will be using this method more often after learning it. Hi fellow developers, my name is Sandeep, and I am...Discuss·3 likes·82 readsJavaScript
vijayaraghavan vashudevanvjraghavanv.hashnode.dev·Sep 7, 2024Mastering Loops in Terraform✨This article, will explain in detail how to implement loops and variables in your Terraform code to create dynamic and efficient infrastructure deployments. ✨ ❄️Synopsis: 🌿 Understand how loops can make your Terraform configurations more dynamic an...Discuss·1 like·50 readsAWS
emptycodesemptycodesalsowrites.hashnode.dev·Aug 29, 2024The Truth Behind Every 'foreach' LoopIn the world of C#, one of the most common and elegant constructs is the foreach loop. It’s simple, readable, and effective for iterating over collections. But have you ever wondered what makes this magic happen? The secret lies in the IEnumerable<T>...Discuss·1 like·148 readsforeach
Balaji Chennupatibalajich.hashnode.dev·Aug 5, 2024Understanding JavaScript's forEach, Filter, Map, and Reduce MethodsSo basically any js developer who has ever worked in js must have come across arrays, objects, maps, etc. These are all popular data structures used in js to store and retrieve data, Actually these are the most frequently used data structures in js a...Discuss·1 likeJavascript From Basics To AdvancedJavaScript
Nilkanth Mistrynilkanth1010.hashnode.dev·Jul 16, 2024Day 71 - Let's Prepare for Some Terraform Interview Questions 🔥Today, we dive into some common interview questions about Terraform. Whether you're prepping for an interview or just brushing up on your Terraform knowledge, these questions will help you solidify your understanding of this powerful Infrastructure a...Discuss90 Days Of Devops ChallengesDevops
Nilkanth Mistrynilkanth1010.hashnode.dev·Jun 13, 2024Day 69 - Meta-Arguments in Terraform 🌟Welcome to Day 69 of the #90DaysOfDevOpsChallenge! 🎉 Today, we dive into Meta-Arguments in Terraform. Meta-arguments like count and for_each are powerful tools that can help you manage multiple resources efficiently. Let's break down these concepts ...Discuss·1 like90 Days Of Devops ChallengesDevops
Kemi Owoyelekemi-owoyele.hashnode.dev·May 25, 2024javaScript forEach Array MethodThe forEach() method is used to execute a function for each of the items in an array. The callback function will normally contain some instructions that will be performed on each of the array items. Syntax array.forEach(callbackFunction); The callba...DiscussJavaScript
Aqiraqirlone.hashnode.dev·Mar 25, 2024Maximizing Efficiency large set of records with 'find_each'In Ruby on Rails application development, efficiently handling large datasets is crucial for your application's performance. In this context, the `find_each` method emerges as a powerful tool that many developers underestimate. What is the `find_each...DiscussRuby
Rabina Shahiflutterrabina.hashnode.dev·Feb 21, 2024Everything you need to know about loop in DartLoops execute a code block until a specific condition is met. Here we will talk about for loops with while and do-while loop. For loops forEach() Loop It's the method to iterate over each element of iterable whether it be a list, set, or map. Exam...Discussfor-in loop
woodstockwoodstock.hashnode.dev·Jan 30, 2024map, forEach 메서드 타입 정의하기Map 메서드 타입 정의하기 자바스크립트의 배열 메서드 Map은 다음과 같이 원본 배열의 각 요소에 콜백함수를 수행하고 반환된 값들을 모아 새로운 배열로 만들어 반환한다. const arr = [1, 2, 3]; const newArr = arr.map((it) => it * 2); // [2, 4, 6] map 메서드를 직접 함수로 만들고 타입을 정의해보자 먼저 제네릭 함수가 아닌 일반적인 함수로 만든다. function map(arr: ...DiscussTypeScriptTypeScript