GOGlover Olaoluwainglover.hashnode.dev·Jan 8, 2021 · 6 min readHigher-Order Functions in JavaScriptOne of the pros of JavaScript that makes it well-suited for functional programming is the fact that it can accept higher-order functions. These are functions that can: Accept other functions as arguments Returns a function as a result. To fully und...00
GOGlover Olaoluwainglover.hashnode.dev·Dec 16, 2020 · 4 min readGitHub CLI: An IntroductionGitHub CLI brings GitHub to the terminal, it reduces context switching, helps you to focus, and enables you to write scripts and create your workflow from the terminal. Version 1.0 was released in September 2020 by the GitHub team to help developers ...02KF
GOGlover Olaoluwainglover.hashnode.dev·Dec 10, 2020 · 7 min readUnderstanding The DOMThe Document Object Model (DOM) is a programming interface for HTML and XML documents. It represents the page so that programs can change the document structure, style, and content. The DOM represents the document as nodes and objects. That way, prog...00