dev-radhika.hashnode.devUnderstanding Variables and Data Types in JavaScript :What do you mean by variable and what is it importance ? Let's understand variable with kitchen analogy . For storing grains and pulses at our home we require containers. Similarly , in coding we need15h ago·5 min read
dev-radhika.hashnode.devNodeList v/s HTMLCollection:Introduction : Before understanding NodeList and HTMLCollection let us firstly understand the concept of nodes. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title class="mai15h ago·5 min read
dev-radhika.hashnode.devNodes in DOM :Introduction : What is Nodes ? <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title class="main-title">My First Web Page</title> </head> <body id="main-body"> <!-- This 15h ago·4 min read
dev-radhika.hashnode.devArrow Functions in JavaScript : Introduction: Regular Function : function add(a, b){ return `The sum is ${a+b}.` } console.log(add(3,5)); Output : The sum is 8. Arrow Function : const addInArrow = (a,b) => { return a+b ;1d ago·4 min read
htmcss.hashnode.devEmmet for HTMLHave you ever felt that writing HTML is slow and boring? Typing this again and again: <div></div> <p></p> <h1></h1> Now imagine writing a full structure with many divs This is where Emmet becomes your best friend. What is Emmet? Emmet is a shortcut...Feb 1·3 min read