You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// trying to create an age variable and then reassign the value by 1
let age = 33;
age += 1 ;
console.log(age);
/*By changing the variable from const to let since const variable value can't be change. I used prefix to increase the value and reassign it right away.*/