AKAshish Kr Palinpalkrashish.hashnode.dev·Jan 10, 2023 · 3 min readMost Important Question in HTMLWhat is HTML? The Full form of HTML, Hyper Text Markup Language, or HTML is the standard markup language for documents designed to be displayed in a web browser. HTML is a markup language that defines the structure of your content OR HTML is the most...00
AKAshish Kr Palinpalkrashish.hashnode.dev·Dec 20, 2022 · 1 min readArray method in JavaScriptWhat is an array? An array is a single variable that is used to store different elements. example:- let array = [ 1, "Hello", "Ashish", "I", "am", "learning", "JavaScript"]; How many ways declare an array? 1:- using an array literal:- The easiest way...00
AKAshish Kr Palinpalkrashish.hashnode.dev·Nov 12, 2022 · 3 min readIntroduction of CSS and type of SelectorWhat is CSS? ** CSS stands for Cascading Style Sheets (CSS)** CSS is the language, we use to style a web page CSS describes how HTML elements are to be displayed on the screen, on paper, or in other media. CSS saves a lot of work. It can control t...00
AKAshish Kr Palinpalkrashish.hashnode.dev·Nov 9, 2022 · 2 min readIntroduction to Web and HTML1. What is the Web? The Web is the common name for the World Wide Web (WWW). Web—is an interconnected system of public web pages accessible through the Internet. The Web is not the same as the Internet: the Web is one of many applications built on ...00
AKAshish Kr Palinpalkrashish.hashnode.dev·Sep 2, 2022 · 2 min read() () () currying and Higher Order Function in JSIn JavaScript, we called functions like this. sum (2,5); but if I say we can call a function something like this sum (2) (5); So this is called function currying... Currying is translating a function from callable as f(a,b,c) into callable a f(a,b,c...00