Skip to content

Instantly share code, notes, and snippets.

View matiuschristov's full-sized avatar

Matius Christov matiuschristov

View GitHub Profile
/**
* Creating objects with Classes
* Versus objects with prototypes
* Since JavaScript is not a Class-based language
* what is happening behind the class syntax?
*/
let PersonC = class {
constructor(nm, id) {
this.name = nm;
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active July 24, 2024 17:44
Conventional Commits Cheatsheet

Conventional Commit Messages

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default