Check EDR status Click
EXCEPTIONAL DATA REPORT (EDR) STATUS
Hi, I’m Vijay Chauhan, a web developer from India in love with all things internet. Online since 2015.
why we use header in top HTML
The <header> element represents a container for introductory content or a set of navigational links. A <header> element typically contains: one or more heading elements (<h1> - <h6>) logo or icon.
For Example
<!DOCTYPE html>
<html>
<body>
<article>
<header>
<h1>A heading here</h1>
<p>Posted by John Doe</p>
<p>Some additional information here</p>
</header>
<p>Lorem Ipsum dolor set amet....</p>
</article>
</body>
</html>
Hi, I’m Vijay Chauhan, a web developer from India in love with all things internet. Online since 2015.
Subscribe to:
Posts (Atom)
JavaScript + Angular-compatible version of loan amortization calculator that you can integrate into an Angular component or service
JavaScript Version of Loan Amortization 1. Loan Calculator Function (Pure JS/TS) export function calculateLoanSchedule ( principal:...
Best for you
-
Temporal Dead Zone is a behaviour that occurs with variables declared using let and const keywords. It is a behaviour where we try to ...
-
Both are comparison operators. The difference between both the operators is that,“==” is used to compare values whereas, “ === “ is used t...
-
In javascript, Map is used to store key-value pairs. The key-value pairs can be of both primitive and non-primitive types. WeakMap is simila...
-
Javascript Function : var currDate =01/03/2023 var date_birth = 04/03/1994 function isLessThan18(currDate, date_birth) { var currday=parseI...
-
Easy Filter in Javascript With Demo var filter = { address : 'England' , name : 'Mark' }; var users = [{ name ...
-
In this tutorial, you will learn how to set up a Node.js and Express project with Typescript and live auto-reloading. Note that this metho...
-
SELECT # Retrieve data from the database FROM # Specify the table to select data from WHERE # Filter rows based on a condition AS # Rename...
-
Solution To delete a key regardless of whether it is in the dictionary, use the two-argument form of dict.pop() : my_dict.pop( 'key...
-
The ternary operator is a shorthand for if-else statements. Example: let number = 10; let result = (number % 2 === 0) ? "Even" ...
