By convention in Python, Ruby, and Rust, most programmers use snake_case to write variable names. In JavaScript, the more-popular convention (and the one we use) is camelCase.
Here are some casing examples:
camelCasesnake_casePascalCaseSCREAMING_SNAKE_CASEAgain, prefer camelCase when writing JavaScript code.