×
1 Choose EITC/EITCA Certificates
2 Learn and take online exams
3 Get your IT skills certified

Confirm your IT skills and competencies under the European IT Certification framework from anywhere in the world fully online.

EITCA Academy

Digital skills attestation standard by the European IT Certification Institute aiming to support Digital Society development

LOG IN TO YOUR ACCOUNT

CREATE AN ACCOUNT FORGOT YOUR PASSWORD?

FORGOT YOUR PASSWORD?

AAH, WAIT, I REMEMBER NOW!

CREATE AN ACCOUNT

ALREADY HAVE AN ACCOUNT?
EUROPEAN INFORMATION TECHNOLOGIES CERTIFICATION ACADEMY - ATTESTING YOUR PROFESSIONAL DIGITAL SKILLS
  • SIGN UP
  • LOGIN
  • INFO

EITCA Academy

EITCA Academy

The European Information Technologies Certification Institute - EITCI ASBL

Certification Provider

EITCI Institute ASBL

Brussels, European Union

Governing European IT Certification (EITC) framework in support of the IT professionalism and Digital Society

  • CERTIFICATES
    • EITCA ACADEMIES
      • EITCA ACADEMIES CATALOGUE<
      • EITCA/CG COMPUTER GRAPHICS
      • EITCA/IS INFORMATION SECURITY
      • EITCA/BI BUSINESS INFORMATION
      • EITCA/KC KEY COMPETENCIES
      • EITCA/EG E-GOVERNMENT
      • EITCA/WD WEB DEVELOPMENT
      • EITCA/AI ARTIFICIAL INTELLIGENCE
    • EITC CERTIFICATES
      • EITC CERTIFICATES CATALOGUE<
      • COMPUTER GRAPHICS CERTIFICATES
      • WEB DESIGN CERTIFICATES
      • 3D DESIGN CERTIFICATES
      • OFFICE IT CERTIFICATES
      • BITCOIN BLOCKCHAIN CERTIFICATE
      • WORDPRESS CERTIFICATE
      • CLOUD PLATFORM CERTIFICATENEW
    • EITC CERTIFICATES
      • INTERNET CERTIFICATES
      • CRYPTOGRAPHY CERTIFICATES
      • BUSINESS IT CERTIFICATES
      • TELEWORK CERTIFICATES
      • PROGRAMMING CERTIFICATES
      • DIGITAL PORTRAIT CERTIFICATE
      • WEB DEVELOPMENT CERTIFICATES
      • DEEP LEARNING CERTIFICATESNEW
    • CERTIFICATES FOR
      • EU PUBLIC ADMINISTRATION
      • TEACHERS AND EDUCATORS
      • IT SECURITY PROFESSIONALS
      • GRAPHICS DESIGNERS & ARTISTS
      • BUSINESSMEN AND MANAGERS
      • BLOCKCHAIN DEVELOPERS
      • WEB DEVELOPERS
      • CLOUD AI EXPERTSNEW
  • FEATURED
  • SUBSIDY
  • HOW IT WORKS
  •   IT ID
  • ABOUT
  • CONTACT
  • MY ORDER
    Your current order is empty.
EITCIINSTITUTE
CERTIFIED

Can the value of a constant variable be changed after it is assigned a value?

by EITCA Academy / Monday, 07 August 2023 / Published in Web Development, EITC/WD/JSF JavaScript Fundamentals, Basic programming in JavaScript, Number and string data types, Examination review

In the field of web development, specifically in JavaScript programming, the value of a constant variable cannot be changed after it has been assigned a value. A constant variable, as the name suggests, is a variable whose value remains constant throughout the execution of a program. Once a value is assigned to a constant variable, it cannot be modified or reassigned.

In JavaScript, the concept of constant variables was introduced in ECMAScript 6 (ES6) with the introduction of the `const` keyword. The `const` keyword is used to declare a constant variable, and it must be assigned a value at the time of declaration. Here's an example:

const PI = 3.14159;

In this example, `PI` is a constant variable that has been assigned the value of 3.14159. Once this value is assigned, it cannot be changed. Any attempt to modify the value of `PI` will result in an error.

For example, the following code will throw an error:

const PI = 3.14159;
PI = 3.14; // Error: Assignment to constant variable.

This error occurs because the value of a constant variable cannot be reassigned. It is important to note that this behavior is specific to constant variables declared using the `const` keyword. Regular variables declared using the `let` or `var` keywords can have their values changed or reassigned.

It is worth mentioning that while the value of a constant variable cannot be changed, if the value is an object or an array, the properties or elements of the object or array can still be modified. This is because the reference to the object or array remains constant, but the properties or elements within it can be mutated. Here's an example:

const person = {
  name: 'John',
  age: 25
};

person.age = 26; // Valid, modifying a property of the object.

console.log(person); // Output: { name: 'John', age: 26 }

In this example, the constant variable `person` holds a reference to an object. Although the reference itself cannot be changed, the properties of the object can be modified.

To summarize, in JavaScript, a constant variable is a variable whose value cannot be changed after it has been assigned. The `const` keyword is used to declare constant variables, and once a value is assigned, it cannot be modified. However, if the value of a constant variable is an object or an array, the properties or elements within it can still be modified.

Other recent questions and answers regarding Examination review:

  • What is string concatenation and how is it used in JavaScript?
  • How can you declare a constant variable in JavaScript?
  • How are numbers and strings different in JavaScript?
  • What are the two basic data types in JavaScript?

More questions and answers:

  • Field: Web Development
  • Programme: EITC/WD/JSF JavaScript Fundamentals (go to the certification programme)
  • Lesson: Basic programming in JavaScript (go to related lesson)
  • Topic: Number and string data types (go to related topic)
  • Examination review
Tagged under: Constant Variable, ECMAScript 6, JavaScript, Programming, Value Assignment, Web Development
Home » Web Development » EITC/WD/JSF JavaScript Fundamentals » Basic programming in JavaScript » Number and string data types » Examination review » » Can the value of a constant variable be changed after it is assigned a value?

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (105)
  • EITCA Certification (9)

What are you looking for?

  • Introduction
  • How it works?
  • EITCA Academies
  • EITCI DSJC Subsidy
  • Full EITC catalogue
  • Your order
  • Featured
  •   IT ID
  • EITCA reviews (Medium publ.)
  • About
  • Contact

EITCA Academy is a part of the European IT Certification framework

The European IT Certification framework has been established in 2008 as a Europe based and vendor independent standard in widely accessible online certification of digital skills and competencies in many areas of professional digital specializations. The EITC framework is governed by the European IT Certification Institute (EITCI), a non-profit certification authority supporting information society growth and bridging the digital skills gap in the EU.
Eligibility for EITCA Academy 90% EITCI DSJC Subsidy support
90% of EITCA Academy fees subsidized in enrolment

    EITCA Academy Secretary Office

    European IT Certification Institute ASBL
    Brussels, Belgium, European Union

    EITC / EITCA Certification Framework Operator
    Governing European IT Certification Standard
    Access contact form or call +32 25887351

    Follow EITCI on X
    Visit EITCA Academy on Facebook
    Engage with EITCA Academy on LinkedIn
    Check out EITCI and EITCA videos on YouTube

    Funded by the European Union

    Funded by the European Regional Development Fund (ERDF) and the European Social Fund (ESF) in series of projects since 2007, currently governed by the European IT Certification Institute (EITCI) since 2008

    Information Security Policy | DSRRM and GDPR Policy | Data Protection Policy | Record of Processing Activities | HSE Policy | Anti-Corruption Policy | Modern Slavery Policy

    Automatically translate to your language

    Terms and Conditions | Privacy Policy
    EITCA Academy
    • EITCA Academy on social media
    EITCA Academy


    © 2008-2026  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP
    CHAT WITH SUPPORT
    Do you have any questions?
    We will reply here and by email. Your conversation is tracked with a support token.