MKMyo Koinmy0k0.hashnode.dev·Jan 10, 2024 · 2 min readES6 Features - Article #1Const In ES6, the const keyword is introduced to create constant variables which can't be reassigned after their initial assignment. Attempting to reassign the const variables will get the TypeError: Assignment to constant variable. Here is an exampl...00