About 70,100 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, …

  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 — …

  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 …

  4. 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 …

  5. Const keyword in C++ - GeeksforGeeks

    Jan 17, 2026 · There are two ways to declare a constant function: Ordinary Const Function: Declaring a non-member function as …

  6. JavaScript var let and const - W3Schools

    const is strictly read-only. It requires an initial value immediately upon declaration and cannot be reassigned later. Note on const …

  7. What is the difference between const int*, const int * const, and int ...

    Jul 17, 2009 · The first thing to the left of the "const" is what's constant. If "const" is the thing the farthest to the left, then the first …

  8. 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. …

  9. CONST Definition & Meaning - Merriam-Webster

    1 day ago · What does the abbreviation CONST stand for? Meaning: constant.

  10. 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 …