If I put a css property in JS variable, and change the variable value, does the property change?
And a little subquestion: what's difference between let and var, and what should I use?
For example:
let property = document.getElementById("el").style.display;
// variable's content changed
property = "block";
// will the #el's display property change?