Pascal case and camel case are two different casing styles used in programming for naming variables, class and type names. Learn the differences and other casing styles.
Infinite scroll is a UX technique that allows users to continuously scroll on a web page without loading a new page. Here are three ways to implement it in React.
Dependency injection is a technique in which you make the interactions between objects as minimal as possible through specific dependencies. Here’s what to know.
The document ready method ensures that a section of JavaScript code only runs once the document object model (DOM) is ready. Here’s how to do it in JavaScript without jQuery.
There are a few common methods to determine if a checkbox is checked in JavaScript and jQuery, including: the checked property, :checked selector and the prop() method. Learn more.
Converting a JavaScript string into a number is useful for comparing numerical data that comes in string format and completing math operations. Here are seven methods to do it.
There are several methods to check if an object has a property in JavaScript, including the in operator, object.hasOwn() method, checking for undefined value and more.