Javascript Data Structure Tutorial - Introduction








The tutorial introduces how to use Javascript to build data strutures.

It starts with the topics on Javascript basics, such as data types, variable, statements, function.

The first data structure discussed in this tutorial is Array. Array is a build-in data structure object. Array class has a list of methods we can use to operate on array elements.

Array is also an building block or underline data storage we used to build advanced data structure.

After showing how to use the Array class, commom used data structures in programming are introduced one by one.

Some of the sorting algorithms are also discussed.