SASilas Adedoyininfaarda.hashnode.dev·Apr 15, 2021 · 2 min readHelpful CSS classes naming conventionFor most of my years as a frontend developer, I've had to write my CSS from scratch using SCSS. If you write CSS from scratch, you should know one thing, it's really easy for things to get messy. Luckily there's the 7-1 architecture and BEM naming...00
SASilas Adedoyininfaarda.hashnode.dev·Apr 4, 2021 · 2 min readDeep Copying Objects In JavaScriptWhen you try to copy objects in JavaScript with Object.assign or the spread operator, you might think you've avoided copying the items by reference. And yes, this is true, but for only top-level properties of the object, if you try to update nested p...00
SASilas Adedoyininfaarda.hashnode.dev·Jan 3, 2021 · 7 min readDay 1: Intersection ObserversI intend to keep these posts as short as possible, so I'll get right into it. Today I learned about intersection observers, Intersection Observer is a Web Api that allows you to know out when an element is visible on the browser screen relative to th...01S