LKLOKESH KHATIinlokesh005.hashnode.dev·Aug 13, 2022 · 3 min readHigher Order functions in JavaScriptIn JavaScript functions are first-class-citizens this means in JavaScript functions behave like variables. therefore functions can be assigned to a variable or passed as an argument or can be returned by another function. What is a Higher order funct...00
LKLOKESH KHATIinlokesh005.hashnode.dev·Dec 6, 2021 · 2 min readHow to select HTML Elements in JavaScript.In this blog post, we will see the most common ways to select HTML elements using JavaScript. To add functionality to Html first we need to get all the required elements in our JavaScript file. Selecting Elements by ID getElementById() : getElem...00
LKLOKESH KHATIinlokesh005.hashnode.dev·Dec 5, 2021 · 1 min readWhat is CSS Box ModelCSS stands for Cascading Style Sheets, it describes the structure and appearance of a Web page. Box Model The CSS box model is fundamental to laying out documents with CSS. Every element in a browser is in a box or is a box, which means a web page is...00