Results for: "javascript"

Contents (326)

What is Gzip compression and what is it used for?
What is Gzip compression and what is it used for?

GZIP compression allows you to compress the resources of a web page before they are served to the users' browsers…

read more
How to use the endsWith method in JavaScript
How to use the endsWith method in JavaScript

In this short tutorial, we are going to see what the endsWith method, introduced in JavaScript ES6, is and how…

read more
What are javascript symbols and how can they help you?
What are javascript symbols and how can they help you?

Symbols are a new primitive value introduced by ES6. Their purpose is to provide us unique identifiers. In this article,…

read more
Callbacks in JavaScript
Callbacks in JavaScript

Callback functions are the same old JavaScript functions. They have no special syntax, as they are simply functions that are…

read more
How to create PDF with JavaScript and jsPDF
How to create PDF with JavaScript and jsPDF

Creating dynamic PDF files directly in the browser is possible thanks to the jsPDF JavaScript library. In the last part of…

read more