constant variable js code example
Example 1: how to dec are a constant in javascript
const myBirthday = '18.04.1982';
Example 2: const in javascript
const value = 10;
const constant = value;
Example 3: js define constant by element id
const elem = document.getElementById('elementID');