allaboutjs.hashnode.dev03.FunctionsFunctions in JavaScript: A Comprehensive Guide In JavaScript, functions are a fundamental concept that allows you to group a set of statements together to perform a specific task. In this article, we will explore the world of functions in JavaScript,...Sep 28, 2024·2 min read
allaboutjs.hashnode.dev02. OperatorsIn JavaScript, operators are used to perform various operations on variables and values. In this article, we will explore the different types of operators in JavaScript, including unary, arithmetic, relational, equality, binary logical, and condition...Sep 28, 2024·5 min read
allaboutjs.hashnode.dev01.Variables and DatatypesData Types in JavaScript JavaScript supports several types of data that variables can store. Here are the main ones, along with examples: 1. Numbers Numbers in JavaScript can be either integers or floating-point values. JavaScript treats both as the ...Sep 28, 2024·3 min read
whynot.hashnode.devWhy DOCTYPE in html?let's see deeper Why we use DOCTYPE? and What if we don't use it? and is there any other DOCTYPE other than commonly known html? DOCTYPE, short for Document Type Declaration, serves as an instruction to the web browser regarding the version of HTML o...Apr 26, 2024·2 min read
whynot.hashnode.devWhy index.html is the Preferred Base File in Web DevelopmentWhen we delve into the intricacies of web development, we often encounter the ubiquitous presence of index.html. But why is this particular file so prevalent in the structure of web pages? Firstly, let’s address a common misconception: the file exten...Apr 26, 2024·1 min read