AKAnkush kumarinankush8950.hashnode.dev路Jan 11, 2023 路 3 min readJavascript functionWhat is a function? A function, in javascript, represents a block of code that can be executed at any time when the function is called. The different ways of declaring a function:- Function declaration. Function Expression. Arrow Function. Nested...00
AKAnkush kumarinankush8950.hashnode.dev路Jan 4, 2023 路 3 min readExplain HTML 5 boilerplateWhat is HTML? Html stands for Hypertext Markup Language. It is used to design web pages using the markup language. Example of HTML boilerplate. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="wi...00
AKAnkush kumarinankush8950.hashnode.dev路Nov 15, 2022 路 3 min readJavaScript Loops ExplainedJavaScript Loops:- The JavaScript loops are used to iterate the piece of code using for, while, do-while or for-in loops. It makes the code compact. It is mostly used in arrays. There are different types of loops:- 1. for Loop:- Loops through a block...00
AKAnkush kumarinankush8950.hashnode.dev路Nov 11, 2022 路 4 min readArray MethodsWhat is Array. Arrays are used to store multiple values in a single variable. This is compared to a variable that can store only one value. Each item in an array has a number attached to it, called a numeric index, that allows you to access it. In J...00
AKAnkush kumarinankush8950.hashnode.dev路Nov 3, 2022 路 1 min readMastering CSS FlexboxTABLE OF CONTENTS What is Flexbox 馃槞? display. flex-direction. flex-wrap. justify-content. align-items. align-content. order What is Flexbox? Flexbox is a one-dimensional layout method for arranging items in rows or columns. Display:-th...00