Javascript
for
beginners

> Want to learn JavaScript but don't have the right resources?
Want to share your knowledge in your language!
You're in the right place.

Read. Create. Comment.

WRITE

CATEGORY: API
API

Resize Observer API


In modern web development, responsive design is paramount. The need to monitor element size changes arises frequently, and that's where the Resize Observer API shines. This API enables efficient tracking of size changes in HTML or SVG elements without incurring performance overhead. What is the Resize Observer? The Resize Observer is a JavaScript API that allows you to monitor dimension changes of individual HTML or SVG elements. When an element's size changes, a defined callback function is invoked. This API is highly optimized, meaning it doesn't consume excessive resources, making it ideal for responsive...

Read more
Created: 05/03/2019Comments:0Views: 64
API

WEB STORAGE


The essence of the web, whether it is a website or an application, has long been that data is prepared and executed on servers and then displayed to users in web browsers. With the advent of HTML5, it became possible to run complete and functional applications on the client side. Before this, cookies were used for such purposes. One of the most important features of any application, to work properly, is the ability to store data so it can be used whenever needed. For storing small amounts of data on the client side, cookies were used for a long time....

Read more
Created: 02/28/2019Comments:1Views: 102
API

Performance Observer API


The latest API for monitoring Web Performance. It is slightly more complicated to set up, but the advantage is that it uses the same syntax as other Observer APIs (Resize Observer, Intersection Observer, and Mutation Observer). The Performance Observer API allows you to set up something similar to an event, which monitors specific configured web performance metrics and triggers a callback function when those results become available in the browser's performance timeline. Within the callback function, you can access this data. The Performance Observer API is used to monitor, test, or measure performance metrics to improve your application....

Read more
Created: 02/28/2019Comments:0Views: 98
API

Performance API


There are many APIs and techniques for measuring the performance of a web page (all the APIs listed below are interconnected, share similar syntax, and inherit properties from each other – most importantly, they are used in the same way): Performance API – Used to precisely measure the time required for specific performance evaluations. It contains other APIs, each of which measures a specific aspect of the web page's performance. All these APIs are used in the same way (explained in detail under the heading below: Performance APIs). Most...

Read more
Created: 02/28/2019Comments:0Views: 101