Skip to content

Instantly share code, notes, and snippets.

View nicograef's full-sized avatar

Nico Gräf nicograef

View GitHub Profile

These guidelines are supposed to improve code quality and readability.

Naming Stuff

// - don't
const cid = 13;

// + do
const customerId = 13; // or customerID