Const 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...