Skip to content

Instantly share code, notes, and snippets.

View adarsh-chakraborty's full-sized avatar
💻
I'm probably learning something right now. wbu?

Adarsh Chakraborty adarsh-chakraborty

💻
I'm probably learning something right now. wbu?
View GitHub Profile
@adarsh-chakraborty
adarsh-chakraborty / name-validation.html
Created October 5, 2021 08:04
Demo file to demonstrate name validation in html file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Validation</title>
</head>
<body>
<input id="fullName" type="text" minlength="4"><button id="btn">Submit</button>
@adarsh-chakraborty
adarsh-chakraborty / js-topics.md
Last active August 28, 2022 18:31
10 JavaScript topics you must know before learning frameworks.

#10 Javascript topics to learn before React or any framework

Before learning any framework or React, It'll help you alot if you understand atleast these 12 concepts of javascript.

1. let & const
2. Understanding Classes,Objects, Properties and Methods
3. Understanding Arrow Functions
4. Arrays & Array Methods
5. Reference and Primitive Types
  1. The Spread & Rest Operator