LHLigalah Hezroninligalahhezron.hashnode.dev·Dec 12, 2024 · 1 min readWhy Clocks Run ClockwiseIan: Hey, Scott! Guess what? I’ve got another explainer for you. Scott: Oh, here we go again. What’s keeping you up at night this time? Ian: It’s clocks! Do you know why they run clockwise? Scott: Umm… because that’s just how they’ve always been? Ian...00
LHLigalah Hezroninligalahhezron.hashnode.dev·Sep 10, 2024 · 6 min readThe Undeniable Utility of CSS :hasI don’t know if you have noticed that CSS world has been on fire recently. All major browser vendors and the CSS specification authors have been working together to deliver tons of highly requested CSS features. Things like container queries, native ...00
LHLigalah Hezroninligalahhezron.hashnode.dev·Jul 22, 2024 · 4 min readJavaScript PromisesWhat are JavaScript Promises A JavaScript promise is an object representing the eventual completion of or failure of an asynchronous operation. Key Features of Promises Pending: The initial state, neither fulfilled nor rejected. Fulfilled: The oper...00
LHLigalah Hezroninligalahhezron.hashnode.dev·Jul 21, 2024 · 1 min readThe JavaScript substitution for IF with AND (&&) operatorThe && operator unique to JavaScript.With it you can quickly go from this function visitSite(user) { if (user.isLoggodIn) { console.log(`You are $ {user.name}`) } console.log (“Welcome”); } To this: function visitSite(user) { ...00
LHLigalah Hezroninligalahhezron.hashnode.dev·Apr 28, 2024 · 1 min readStyling ListsBy default, unordered list items are marked with round bullets (disc). The list-style property requires 3 values. It's a short and simple way to refer to 3 different sub-properties: type, position and image. ul{ list-style: square inside none; } ...00