Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·Dec 20, 2024Terraform Best Practices: How to Leverage Locals, Count, and For_eachPrerequisite: To gain a better understanding, it is advisable to read this blog first: Click here before continuing with this one. GitHub: Refer this repository. Ever felt like Terraform configurations could be simpler or more flexible? Dive into t...locals block
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 9, 2024the World of Control Structures! 🎢the World of Control Structures! 🎢 "Life is all about the choices we make and path we follow." Same goes for the code as well. Control Structures Let's explore how code can make decisions. Control structures are the building blocks that dictate the ...learncsharp
dheeraj korangagyannbaato.hashnode.dev·Oct 15, 2024Higher Order Functions In JavaScript1. forEach() Function The forEach() method is used to execute a provided function once for each element in an array. It does not return a new array; it simply iterates over the array. Syntax: array.forEach(callback(currentValue, index, array)); cal...Javascript for Begineersjs
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...3 likes·85 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...1 like·52 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>...1 like·163 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...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...90 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 ...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...JavaScript