Tell us what’s happening:
Describe your issue in detail here.
Are there use cases for variables I don’t know yet? It seems redundant to basically set a property to the exact same value twice.
Let’s think you are making a web site with a blue theme . You’ve used that blue color for many elements through out the page like buttons, borders etc. You havent used variables for this instead directly used the value blue for each element. After the hard work of one eternity you completed the site. But at the end you’ve realized that the blue is lil bit saturated or its look weird so you have to change the color theme. Now what you can do is change 'blue` in every elements you’ve used and there is 1000s of lines.
There comes variables for the rescue. If you use a variable to store the color and use the variable for every elements , you have to only change the variable value it will affect the entire page or site.
Hope you understood why variables are so important