DHDom Habersackindomhabersack.hashnode.dev·Jan 14, 2021 · 6 min readHow to build a time block planning scheduleAfter I shared my work schedule, a few people said they’d like to try something like it, but don’t know how to get started. Some suggested that it is easier to set up a regular schedule when you don’t have a job. Sure, having full control over my sch...00
DHDom Habersackindomhabersack.hashnode.dev·Jan 4, 2021 · 4 min readProtect your SEO when crosspostingWriting something and waiting for people to find it doesn’t work. After publishing something, we need to make others aware of it. Nobody will know about what we’re doing unless we tell them about it. It sounds obvious, but I had to learn that lesson ...02
DHDom Habersackindomhabersack.hashnode.dev·Dec 22, 2020 · 4 min readHow to pick your next projectI am a huge fan of todo lists for organizing my tasks. Lately, those lists are growing a lot faster than I can work on them. While lists are great for leading me through each project, they don’t help me pick what project to work on next. Todo lists a...02ED
DHDom Habersackindomhabersack.hashnode.dev·Dec 21, 2020 · 1 min read🔥 How to check if something is an array in JavaScriptInternally, there is no type called “array” in JavaScript. When used on an array, typeof returns "object" instead. To check if something is an array, use Array.isArray() instead. // `typeof` an array returns “object” because JS has no type called “ar...01P
DHDom Habersackindomhabersack.hashnode.dev·Dec 19, 2020 · 1 min read🔥 Create number ranges in JavaScriptTo get a range of numbers in JavaScript, initialize an array by spreading the keys of another array into it. You can shift the range up or down, or do things like have it contain only even numbers. const range = [...Array(5).keys()] // ⇒ [0, 1, 2, 3,...00