feat
Commits, that adds or remove a new featurefix
Commits, that fixes a bugrefactor
Commits, that rewrite/restructure your code, however does not change any API behaviourperf
Commits are specialrefactor
commits, that improve performancestyle
Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)test
Commits, that add missing tests or correcting existing testsdocs
Commits, that affect documentation onlybuild
Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...ops
Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DEBUG | |
// Printing objects on console | |
const foo = {name: 'tom', age: 30}; | |
const bar = {name: 'harry', age: 50}; | |
const baz = {name: 'john', age: 19}; | |
console.log({ foo, bar, baz }) // To show objects names on console. | |
// Styling with css | |
console.logo('%c My friends', 'color: orange; font-weight: bold'); | |
// Console table |