featCommits, that adds or remove a new featurefixCommits, that fixes a bugrefactorCommits, that rewrite/restructure your code, however does not change any API behaviourperfCommits are specialrefactorcommits, that improve performancestyleCommits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)testCommits, that add missing tests or correcting existing testsdocsCommits, that affect documentation onlybuildCommits, that affect build components like build tool, ci pipeline, dependencies, project version, ...opsCommits, that affect operational components like infrastructure, deployment, backup, recovery, ...
This file contains hidden or 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 |