Reguły JavaScript nazywania zmiennych JavaScript

//valid
let a = 'hello';
let _a = 'hello';
let $a = 'hello';
SAMER SAEID