can you use vars in js code example
Example 1: variable javascript
//You can make a variable by using:
var variable-name = 'defenition of the variable';
// Or you can use
let variable-name = 'defenition of the variable';
Example 2: varaible javascript
let <var-name> = value;