Results for: "ES6"
Contents (31)
How to include a JavaScript file in another JavaScript file
some time ago we wrote about how to Import one JS file into another in the plain JS, those techniques…
read more
How do you stop JavaScript execution for a while: sleep()
A sleep() function is a function that allows you to stop the execution of code for a certain amount…
read more
Template Literals in JavaScript
Template literals, also known as template literals, appeared in JavaScript in its ES6 version, providing a new method of declaring…
read more
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?
Symbols are a new primitive value introduced by ES6. Their purpose is to provide us unique identifiers. In this article,…
read more