Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 5, 2024Variables and Data Types in C#Variables A variable is a named storage location in memory that holds a value. In C#, you must declare a variable before using it. data_type variable_name; Data Types C# has a rich set of data types to represent different kinds of data. 1. Value Type...Discussreference datatypes
Ashwin Gopalsamyashwingopalsamy.hashnode.dev·Nov 7, 2024Understanding Go’s Constants: More Flexible Than They SeemWhen I first got into Go, I thought constants were simple and limited—just fixed values, nothing fancy. But as I delve deeper, I find they're quite versatile. Yes, they're fixed values, but Go handles them in ways that are both flexible and efficient...DiscussGo Programming Languagegolang
Oluwatosin Oghenewaire Thompsongoninja.hashnode.dev·Oct 27, 2024Variables, Constants, and Values Guide in GolangWhen starting with Go, it is important to learn the fundamentals. Variables, constants, and values form the building blocks for all Go programs, allowing you to store and manipulate data as you build applications. Mastering these concepts is essentia...DiscussBeginner's Guide to Golang: Start Coding with Confidencevariables
Martin Mwendajavascriptmasteryhub.hashnode.dev·Aug 19, 2024Understanding Javascript var, let and constUpon the release of ES2015 (ES6), two new ways of variable declaration were introduced to javascript. The two new keywords introduced were, let and const. Earlier the var keyword was only used to declared variables. In this article we dive deeper and...Discussjavascript hoisting
Martin Mwendajavascriptmasteryhub.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
Kirti Singhkirti-singh.hashnode.dev·Apr 7, 2024Understanding JavaScript Variable Declarations: The Journey from var to let and constIntroduction In the world of JavaScript, variable declarations play a crucial role in shaping the behavior and structure of code. The introduction of keywords like let, var, and const has revolutionised how developers manage variables within their pr...DiscussJavaScript
Atanu Sarkardisciple.hashnode.dev·Mar 11, 2024Do I have any scope here? Meh...not muchEvery variable in C has a defined scope. Scope refers to the accessibility or visibility of a variable at different points in a program. Block Scope A variable, which is declared within a statement block, ceases to exist as soon as the control exits ...DiscussScope
Jemin Kikanijemin.hashnode.dev·Mar 10, 2024Day 7 : Converting Variable to Numbers And Date Set Methods ?Converting Variable to Numbers There are 3 JavaScript methods that can be used to convert a variable to a number: Method DescriptionNumber() Returns a number converted from argument.parseFloat() Parse its argument and returns a floating point number...Discussconverting variable to number
Shani Riversshanirivers.hashnode.dev·Mar 6, 2024Python Variables, Constants, Style & CommentsHey there, friends! Today, we're going to talk about one of the building blocks of Python: variables. Variables and constants are like little containers that store information. Let's dive in and demystify Python variables together! What are Variables...DiscussPython