변수명 규칙
camelCase - Example:
let someVariable;
let anotherVariableName;
let thisVariableNameIsSoLong;
let someVariable;
let anotherVariableName;
let thisVariableNameIsSoLong;
snake_case - Example:
let first_second;
let my_profile_img;
let to_do_list_array;
Assignment
index.js에서 현재 선언되어 있는 변수의 이름을 수정해주세요.
camelCase를 사용해주세요.
새로운 변수 선언하시면 안 됩니다. 기존 변수를 수정해주세요.
Run 버튼을 눌러 콘솔창을 확인해주세요.