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

Popular posts from this blog

Events Js