INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
| let pokemon = { | |
| "name": "Pikachu", | |
| "id": 25, | |
| "type": "electric", | |
| "ability": { | |
| "primary": "Static", | |
| "hidden": "Lightning rod" | |
| }, | |
| "moves": ["Quick Attack", "Volt Tackle", "Iron Tail", "Thunderbolt"] | |
| }; |
| let pokemons = [{ | |
| "name": "Pikachu", | |
| "id": 25, | |
| "type": "electric", | |
| "ability": { | |
| "primary": "Static", | |
| "hidden": "Lightning rod" | |
| }, | |
| "moves": ["Quick Attack", "Volt Tackle", "Iron Tail", "Thunderbolt"] | |
| }, { |
| <div class="bg-gray-100 block min-h-screen"> | |
| <div class="bg-gray-900 border-b-1 mb-4 border-gray-500 text-white p-4 shadow-lg"> | |
| <h1 class="text-2xl uppercase font-bold">Tailwind Accessibility Config 🎨</h1> | |
| <div class="text-xs"> | |
| Github: <a href="https://github.com/optimizasean/TailwindAccessibilityConfig" target="_blank" class="font-mono">optimizasean/TailwindAccessibilityConfig | |
| </a> | |
| </div> | |
| </div> | |
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
| const day1Solution = (text) => { | |
| const textToArrayOfStrings = text.split(`\n`) | |
| const numberPattern = /\d+/g; | |
| const getCodeFromString = (str) => { | |
| const input = str.match(numberPattern).join(''); | |
| const code = input[0] + input.slice(-1); | |
| return code; | |
| } | |
| const output = textToArrayOfStrings.reduce((acc, str) => { | |
| const code = Number.parseInt(getCodeFromString(str)); |