JavaScript Tutorials

JavaScript is a programming language that was first released in 1995 and is one of the core technologies of the web alongside CSS and HTML. JavaScript is supported by all popular web browsers and allows developers to create interactive pages in a variety of different ways.

 

SkillSugar has a curated collection of JavaScript tutorials that are designed to make it easy for you to learn quickly while still including nuanced information about how each function works.

Latest

 thumbnail

How to Clear Interval in JavaScript

March 08, 2022

To clear an interval in JavaScript, use the clearInterval() function and pass the interval object as the first argument....

 thumbnail

For x in Range JavaScript

March 08, 2022
 thumbnail

Convert String to Lowercase JavaScript

February 10, 2022

To convert a string into lowercase in JavaScript use the toLowerCase() function. toLowerCase() SyntaxPass the strin...

 thumbnail

Download a File Using JavaScript

February 10, 2022

To download a file using JavaScript you can use the browser's built-in functionality rather than writing your own functi...

 thumbnail

Check Object is Empty JavaScript

February 02, 2022

To check an object is empty in JavaScript use the Object.keys() function and check its length is equal to 0. Check...

 thumbnail

How to Add Options to Select Input with jQuery

February 02, 2022

In this tutorial, we will go through some of the different ways of adding a new option element to a select input field.&...

 thumbnail

Sum of an Array in JavaScript

September 18, 2021