current location:Home>Technical Articles>Web Front-end
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Creating dynamic routes to internationalization (i) with Astro Build
- If you want read this article in English go here I recently started learning Astro to create a dashboard-style project. I really want to implement internationalization (i18n) in this project—the goal is that anyone can
- JS Tutorial 934 2024-08-18 00:00:02
-
- Quick Sort using Javascript
- Implementing Quick Sort is bit tricky but if you understand it and keep on practice it will be easier. const quickSort = (arr, lo, hi) => { if (lo >= hi) { return ; } const pivotIndex = getPivotIndex(arr, lo, hi); qu
- JS Tutorial 243 2024-08-17 20:47:32
-
- Why Everyone is Talking About React: A Deep Dive into Its Popularity and Power ⚛️
- Ever noticed how React is the talk of the town in the developer community? ? Whether you’re scrolling through Twitter, chatting with fellow coders, or browsing GitHub, React is everywhere. But what’s all the hype about? Is it really that powerful, or
- JS Tutorial 723 2024-08-17 20:40:02
-
- Browser Context
- The browser context refers to the overall environment and capabilities provided by the web browser to web applications. It contains many things inside itself, like the window object, DOM, and Browser APIs. Window Object: In JavaScript, the window obj
- JS Tutorial 507 2024-08-17 20:39:37
-
- How event loop work in Node.js?
- The event loop is a core concept in Node.js that enables it to handle asynchronous operations efficiently. Here's a simplified explanation of how it works: 1. Single Threaded Nature Node.js operates on a single thread. This means it can o
- JS Tutorial 273 2024-08-17 20:31:37
-
- Higher order function in java script
- Defination *Any function which is taking another function as a argument that function is called HOF. *Function are called HOF only if it takes minimum one function as a argument. *Array.map, Array.filter, and Array.reduce are common higher-orde
- JS Tutorial 837 2024-08-17 20:31:32
-
- Web Rendering Patterns Made Simple: A Beginners Guide
- Hey there, fellow web enthusiasts! ? Before we dive in, I wanted to let you know that this article is an introduction article series about rendering patterns on my portfolio. If you're curious, you can check out the full, chatty version on my websit
- JS Tutorial 224 2024-08-17 20:31:02
-
- How to Quickly Find Out What's in Your Clipboard
- JavaScript Techniques to Access Clipboard: 1.Using the Clipboard API (navigator.clipboard.readText): The Clipboard API provides a secure way to read from and write to the clipboard. Here's how you can use navigator.clipboard.readText() to quic
- JS Tutorial 826 2024-08-17 20:30:36
-
- Why do we use OTP libraries when we can just do Math.random()
- One-time passwords (OTPs) are widely used for authentication and verification purposes in various applications and services. A server usually generates them and sends them to the user via SMS, email, or other channels. The user then enters the OTP to
- JS Tutorial 273 2024-08-17 20:30:32
-
- Important Facts Between Flexbox and CSS Grid Types
- Layouts benefit from both Flexbox and Grid. So which one should I use when? I'm the one who made these decisions. I'll demonstrate what functions. The Best for One-Direction Layouts Is Flexbox For rows or columns, use flexbox. Utilize it
- CSS Tutorial 132 2024-08-17 19:17:05
-
- A Comprehensive Guide to Bitbucket: Features, Integrations, and Best Practices
- Introduction to Bitbucket Bitbucket is a Git-based source code repository hosting service owned by Atlassian, known for its powerful integration capabilities and robust collaboration features. It caters to teams of all sizes, offering solutions that
- JS Tutorial 868 2024-08-17 19:12:02
-
- Master CSS Selectors for Efficient Styling
- Overview Do you want to easily style websites? CSS selectors are useful. Learning them, I've discovered, saves time and enhances designs. Basic CSS Selectors Begin with simple selectors. For easy tasks, use the class and ID selector
- CSS Tutorial 536 2024-08-17 19:07:02
-
- Simple Ways to Detect Caps Lock in Your Web App
- When users enter passwords or other sensitive information in a web application, it's crucial to provide them with the best possible experience. One common issue is the accidental activation of Caps Lock, which can lead to failed login attempts and us
- JS Tutorial 360 2024-08-17 19:01:32
-
- Day / Days of Code: Exploring JavaScript Functions and Dynamic Typing
- Fri, August 16, 2024 JavaScript has dynamic typing, so if your numeric values increase over some boundary value, JavaScript has got you! Or, if any of your JavaScript values change to any other type--or even a collection of other types, JavaScript i
- JS Tutorial 905 2024-08-17 17:27:02
-
- Recognizing the CSS Background-Repeat Property
- Background-repeat was one of the first properties I learned when I initially started using CSS. I was confused at first by it. But the more I utilized it, the more I understood its significance. Every background image is automatically reproduced in b
- CSS Tutorial 153 2024-08-17 16:51:32