See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
| function BracketCombinations(num) { | |
| // code goes here | |
| const factorial = (number) => { | |
| let k = 1 | |
| for(let i = number; i >= 1; i--){ | |
| k *= i; | |
| } | |
| return k | |
| } |
| function ArrayChallenge(arr) { | |
| // Declare variables | |
| let buy_price = 0 | |
| let sell_price = 0 | |
| let max_profit = -1 | |
| let next_buy_price = true | |
| // Loop every price and calculate it | |
| // console.log(arr) |
| import axios from "axios"; | |
| const axiosInstance = axios.create({ | |
| baseURL: "https://api.allorigins.win/get?url=", | |
| }); | |
| const fetchAPI = async ({ categoryId }: BookAPI) => { | |
| try { | |
| const response = await axiosInstance.get("https://jsonplaceholder.typicode.com/posts"); | |
| // Maka requestnya dikirim ke https://api.allorigins.win/get?url=https://jsonplaceholder.typicode.com/posts |
| { | |
| "facebook": "facebook.com/zxkhoi", | |
| "linkedin": "linkedin.com/in/khoironiks", | |
| "steam": "steamcommunity.com/id/zekhoi", | |
| "dribbble": "dribbble.com/zekhoi", | |
| "behance": "behance.net/zekhoi", | |
| "instagram": "instagram.com/zekhoi/", | |
| "medium": "medium.com/@zekhoi", | |
| "github": "github.com/zekhoi", | |
| "dev.to": "dev.to/zekhoi", |
| # Import modules | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from math import sin, cos,tan, exp, sqrt | |
| from prettytable import PrettyTable as table | |
| # For analytics | |
| # For D < 0 | |
| # Addition function |
See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs