Variables & Constants JS
Variables
This type of variable can change
Are "labeled data containers "
"True" variables where the stored value actually changes
Let name = 'Anna';
name = 'Max';
constant
"variables " where the value actually never changes
const enteredValue = 'Hi';
NEVER CHANGES
Comments
Post a Comment