Fahimul Islamfif.hashnode.dev·Sep 7, 2024Understanding var, let, and const in JavaScriptIntroduction JavaScript is one of the most popular programming languages today, and it has changed a lot over time. When JavaScript was first introduced, var was the only way to declare variables. While it served its purpose, var had some tricky part...DiscussJavaScript
priyadarshi ranjanpriyadarshi.hashnode.dev·Sep 6, 2024Day-47: Terraform VariablesTerraform is a powerful tool for infrastructure as code (IaC) that allows you to define and manage cloud resources efficiently. One of the key concepts in Terraform is the use of variables. In this blog, we'll explore what variables are, the types of...Discuss·1 likeDevops2Articles1Week
Sunney Soodsunneysood.hashnode.dev·Aug 22, 2024Difference between Ordinal and Nominal VariablesThere are two main types of categorical variables: nominal and ordinal. 1. Nominal Variables Definition:Nominal variables are categorical variables that have two or more categories, but there is no intrinsic ordering to these categories. The categori...DiscussData Science
Emmanuel Soetanimmanuelsoetan.hashnode.dev·Aug 20, 2024How to write your first Cairo functionBlockchain development has an average monthly search on Google of 100-1k. Source(google ad words). That is a lot. This only means a lot of people are interested in blockchain technology. Just like any technology out there. Blockchain technology is br...DiscussBlockchain
Austin AsolukaforfreeCodeCampfreecodecamp.org·Aug 19, 2024How to Use Variables and Data Types in JavaScript – Explained With Code ExamplesA variable is like a box where you can store data or a reference to data. In this article, you will learn how to create and use variables. You'll also learn about the different data types in JavaScript and how to use them. Let's get started! Table of...DiscussJavaScript
Modefoluwa Adeniyi-Samuelmode9writes.hashnode.dev·Aug 17, 2024Custom Environment Variable Management SolutionsCustom Environment Variable Management Solutions While many solutions exist for handling environment variables, creating a custom management system tailored to your specific needs can offer enhanced control and integration. This article explores how ...Discuss·4 likesCustom environment
Martin MwendaforJavascript Mastery Hubjavascriptmasteryhub.hashnode.dev·Aug 16, 2024Understanding Javascript VariablesHi, everyone today we are going to learn one of the basics in javascript What are Variables Variables are like containers used for holding or storing information. Declaring a variable in Javascript In Javascript they are three ways of declaring a var...DiscussJavaScript
abhishek kumaraksilearntocoder.hashnode.dev·Aug 15, 2024Learn C# with OOPS Concept (Types of Variables)We will learn Variables with coding so that strong concept will be build As a programmer we must have knowledge of 5 Types of Variables, also keep in mind that declaration of each variables must be logical:- Instance readonly Variables. Instance Va...Discussinstance readonly variable
Chandnicd2.hashnode.dev·Aug 14, 2024Var, Let and Const in JavaScriptJavaScript is a dynamic programming language that allows you to declare variables using three different keywords: "var", "let", and "const". Each of these keywords has its own unique behavior and use cases. Understanding the differences between them ...DiscussJavaScript
abhishek kumaraksilearntocoder.hashnode.dev·Aug 10, 2024Learn C# with OOPS Concept(Memory Management)Lets understand memory management with simple C# Program as given below:- class Employee { int Employee_Id; //member variables/instance variable of a class string Employee_Name; public static void Main() { Employee objEmployee=new Employee(); } } Que...Discussglobal memory