JavaScript -Regeln für die Benennung von JavaScript -Variablen

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