© 2026 Hashnode
High order functions are functions which accept a function in its argument or returns an function. Lets discuss an high order function with examples : function name(passed){ name = "Abhinab"; passed(name) } function greet(fullName){ cons...

Infrastructure as Code (IaC) is a core skill for any DevOps engineer, and Terraform is one of the most widely used tools for this purpose.In this article, I’ll walk through two practical ways to create multiple EC2 instances in AWS using Terraform: ...
