How can I change the value of a constant variable? For example, I have the price on my site:
const PHONE_PRICE = 250;
but now I want to change it in this assignment without making changes elsewhere. Is it possible?
How can I change the value of a constant variable? For example, I have the price on my site:
const PHONE_PRICE = 250;
but now I want to change it in this assignment without making changes elsewhere. Is it possible?
No. The purpose of a constant is precisely that it can't change. If you want it to change, make it a variable:
let PHONE_PRICE = 250;