Snake Case Format

From GM-RKB
Jump to navigation Jump to search

A Snake Case Format is an orthographic naming convention that uses underscore to separate words.



References

2018

  • (Wikipedia, 2018) ⇒ https://en.wikipedia.org/wiki/Snake_case Retrieved:2018-11-13.
    • Snake case (or snake_case) is the practice of writing compound words or phrases in which the elements are separated with one underscore character (_) and no spaces, with each element's initial letter usually lowercased within the compound and the first letter either upper- or lowercase—as in "foo_bar" and "Hello_world". It is commonly used in computer code for variable names, and function names, and sometimes computer filenames. [1] At least one study found that readers can recognize snake case values more quickly than camelCase.
  1. e.g. in Python and Ruby; see Naming convention (programming)