Reglas de JavaScript para nombrar variables de JavaScript

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