AKAlok Kumarinalokcodes.hashnode.dev00CSS Selectors: Targeting HTML ElementsMay 4 · 4 min read · CSS is used to style the HTML elements. But a webpage consists of many HTML elements. So the obivious question is: How to select a particular one? That's where CSS selectors comes into the picture. ThJoin discussion
AKAlok Kumarinalokcodes.hashnode.dev00HTML: Understanding Tags and ElementsMay 4 · 4 min read · What is HTML? HTML stands for HyperText Markup Language. Before jumping to understading what tags and elements are, it is better to first understand what each word in HTML's full form actually means. Join discussion
AKAlok Kumarinalokcodes.hashnode.dev00Arrow Functions in JavaScript: A Simpler Way to Write FunctionsMay 4 · 4 min read · The tradition way of writing JavaScript Functions is: // a function which return square of a number function square(x){ return x * x; } And there's nothing wrong. It is the way most JavaScript'sJoin discussion
AKAlok Kumarinalokcodes.hashnode.dev00JavaScript: Function Declaration vs Function ExpressionMar 13 · 4 min read · Introduction Functions are a reusable piece of code that performs a specific task. For example, a function which returns LCM of two numbers. We use functions to avoid writing the same logic/code againJoin discussion
AKAlok Kumarinalokcodes.hashnode.dev00JavaScript Operators: Everything you need to knowMar 10 · 5 min read · Prerequisite Even though operators in JavaScript are beginner-friendly and easy to understand, it is important to have a clear understanding of a few terms before you start learning them. Value: A vaJoin discussion