Regras de JavaScript para nomear variáveis ​​JavaScript

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