Règles JavaScript pour nommer les variables JavaScript

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