Resources  
  • Difference Between let, var, and const in JavaScript with ExampleMar 05, 2024. In this article, I will demonstrate how to use Var, let, and const with examples. The Var, Let, and const keywords are used to declare variables in JavaScript. Choosing the right variable while writing code makes it more efficient and robust.
  • What Is the Difference Between var, let, and const in JavaScript?Jan 17, 2024. In JavaScript, var, let, and const declare variables with differences in scope, hoisting, and reassignment. Prefer let and const for better scoping, predictability, and avoidance of common bugs.
  • Difference Between Var, Let, Const In JavaScriptAug 13, 2022. In this article, you will learn the difference between Var, Let, Const in JavaScript.
  • Difference Between Var, Let And Const In JavaScriptSep 08, 2019. This article will explain the nuances of JavaScript variable declaration with var, let, and const. Explore their scope, hoisting behavior, and mutability. Learn when to use each for flexible and error-resistant coding.
  • Passing Const Parameter to Functions in C#/C++/VB ComparedAug 30, 2001. Parameter passing to a function is extremely important in all programming languages. The desire to keep the passed parameter intact forced the compiler designers to add various keywords to the programming languages.
  • Difference between Const and ReadonlyAug 05, 2001. In summary, use const for compile-time constants shared across all instances, and use readonly for instance-specific constants that can be set at runtime but remain unchangeable after initialization.
  • Python ConstantsAug 11, 2022. In this article, you will learn about Python Constants.
  • Keywords - Const, ReadOnly, And Static ReadOnly In C#Mar 20, 2018. In this article, I am going to explain about const, read-only, & static keywords in C#.
  • Constant VS ReadOnly In C#Sep 28, 2015. In this article, we will learn constant and readonly in c#. Here we will discuss the differences. In C#, both const and readonly are used for defining values that cannot be modified after they are assigned. However, there are important differences between the two.
  • Const, ReadOnly And Static Variables In C#Jun 04, 2015. C# (C Sharp) is a versatile programming language developed by Microsoft. It offers a rich set of keywords that enable developers to create powerful and efficient applications. Keywords like `class` allow the definition of custom data structures and behaviors, while `async` and `await` facilitate asynchronous programming, making it easier to handle tasks concurrently. The `delegate` keyword empowers event handling and callbacks, fostering interactive applications. C# supports object-oriented principles with keywords like `interface` and `override`, promoting code reuse and maintainability. Additionally, `try-catch` ensures robust error handling, and `readonly` and `const` enforce data immutability. These keywords, among others, make C# a preferred choice for building a wide range of software, from desktop applications to web services and games.
  • Const and Readonly (Fields) in C#Mar 08, 2015. The article describes constants and various types of fields in C# and how to use them in programming.
  • Const vs Readonly in C#Jun 04, 2014. This article explains const vs readonly in C#. Basic difference between const vs readonly is that one needs to be assigned a value at compile time and the other at run time.
  • Const, ReadOnly and Static Keywords in C#May 15, 2014. This article will explain some important points about the const, readonly and static keywords in C#.
  • Const and Readonly Keywords in C#Apr 17, 2014. This article explains the const and readonly keywords in depth as well as a bit on the ildasm.
  • Difference Between Const, ReadOnly and Static ReadOnly in C#Mar 26, 2013. Common keywords like Const, ReadOnly, and Static ReadOnly are quite confusing. So today we will discuss these keywords and try to understand the difference between Const, ReadOnly, and Static ReadOnly in C#.
  • Constants in C#Nov 18, 2009. In this article I will explain about constants.
  • Concept Of Hoisting And TDZ(Temporal Dead Zone)Apr 20, 2023. In this article, I'm going to Explain, how Hoisting and TDZ work in js
  • Var, Final And Dynamic Keywords In Flutter 😎Jul 02, 2022. In this article, we will learn about var, final and dynamic keywords it’s more important in dart.
  • Fundamentals Of TypeScriptApr 24, 2021. In this article, you will learn about the fundamentals of TypeScript.
  • Comparison Between ECMAScript 5 And ECMAScript 6 Versions Of JavaScriptJan 08, 2020. In this article, we are going to discuss briefly the differences between ECMAScript 5 and ECMAScript 6 versions of JavaScript, as well as all the new features introduced in each of these versions. We will discuss the limitations of ES5 and what solutions were offered by ES6 version to overcome those limitations and further improve the JavaScript language .
  • Rarely used keywords in CSharp but Frequently asked in discussions [Beginners]Sep 15, 2011. There are a few words that we rarely use in day to day C# practices [I’m focusing readers who are beginners]. But I’ve seen them in either online exams or other IT quiz shows. So I came to write something about those untouched keywords.

About const

NA

OUR TRAINING