#javascript

Found 139 articles tagged with #javascript

Event bubbling and capturing in JavaScript

In JavaScript, events propagate through event bubbling (from innermost to outermost) and event capturing (opposite direction). Both allow event handling at different DOM levels.

Top 5 JavaScript Authentication Libraries

They typically follow industry best practices, well tested, regularly updated, ensuring a higher level of reliability and security for user authentication.

Top 3 JavaScript Syntax Highlighting Libraries

These libraries are particularly useful in code editors, IDEs, blog posts, documentation, and other platforms where code needs to be presented clearly.

Top 10 JavaScript Image Viewer Libraries

They excel at enhancing image presentation on websites and provide features like zoom, rotate, and navigation, creating a smoother user experience for exploring images.

Top 10 JavaScript Utility Libraries

Some can easily prove to be useful and make your code less bloated, while others can simply be wrappers around native functionalities provided for convenience.

Top 7 JavaScript Meta-Frameworks in 2024

They typically offer a structured approach to building web applications, handling concerns like routing, server-side rendering, and static site generation.

Converting between strings and numbers in JavaScript

It's important to be aware of the potential pitfalls conversion, such as non-numeric input, decimal precision, and numeric overflow, and to use the appropriate conversion method.

How to take unlimited arguments in JavaScript

Some functions are designed to be very flexible and general-purpose. By allowing an arbitrary number of arguments, a function can adapt to a variety of situations.

How to disable ESLint rules per line, file, or folder

ESLint statically analyzes your code to quickly find issues. It examines your JavaScript code for problematic patterns, potential bugs, and deviations from coding standards.

How to fix ReferenceError window is not defined

You'll encounter the "ReferenceError: window is not defined" error when you try to access the window object in an environment where it's not available.