About 77,300 results
Open links in new tab
  1. JavaScript Const - W3Schools

    Difference Between var, let and const The difference between var, let, and const lies in scoping mechanisms, reassignment rules, and JavaScript hoisting. Modern JavaScript standards recommend …

  2. const - JavaScript | MDN - MDN Web Docs

    Jul 8, 2025 · The const declaration creates an immutable reference to a value. It does not mean the value it holds is immutable — just that the variable identifier cannot be reassigned.

  3. const (computer programming) - Wikipedia

    In C, C++, and D, all data types, including those defined by the user, can be declared const, and const-correctness dictates that all variables or objects should be declared as such unless they need to be …

  4. const (C++) | Microsoft Learn

    Mar 13, 2023 · In C++, you can use the const keyword instead of the #define preprocessor directive to define constant values. Values defined with const are subject to type checking, and can be used in …

  5. JavaScript const Statement - W3Schools

    Description The const statement declares a variable. Variables are containers for storing information. Creating a variable in JavaScript is called "declaring" a variable: const name = "Volvo";

  6. constants - What does 'const&' mean in C++? - Stack Overflow

    I understand what the "address of" operator & and the const keyword mean separately. But when I was reading some sample code I saw const&, and I just wanted to know what it means.

  7. const - JavaScript | MDN

    Jul 22, 2017 · The const declaration creates a read-only reference to a value. It does not mean the value it holds is immutable, just that the variable identifier cannot be reassigned.

  8. JavaScript const - GeeksforGeeks

    Jun 11, 2026 · const is block-scoped, similar to let, and is useful for ensuring immutability in your code. Unlike let, the primary feature of const is that it cannot be reassigned once it has been initialized.

  9. Digital and Email Marketing Platform | Constant Contact

    With Constant Contact, you can create effective email marketing and online marketing campaigns to meet your business goals. Start your FREE trial today!

  10. JavaScript const: Declaring Constants in ES6

    This tutorial shows you how to use the JavaScript const keyword to declare constants whose values are immutable.