DEV Community

Seonyoung Chloe (she/they)
Seonyoung Chloe (she/they)

Posted on

10 : Algebra and Data Structures

Why do I study algebra?
What is the benefit of learning algebra?
How does it relate to data structures?
What is necessary to know Data Structures exactly?
When do I begin to start learning Data Structures?
What are JavaScript Data Structures?


A JavaScript Data Structure is a specific technique to organize and store data in a computer so that we can access and modify it efficiently. More accurately, it is a collection of data values, the relationships among them, and the functions or operations that we can apply to the data.
Some of the advantages of using data structures are as follows:
They provide an easy way to manage large datasets.
They simplify the processing of data on a computer.
These are essential for designing efficient program algorithms.


But, only advanced users can make changes to data structures. So if you run into any problem, you’ll need an expert’s advice. The diagram below illustrates the types of data structures available in every programming language, including JavaScript. You will see some other data structures including trie, but these are advanced topics and it’s not relevant to mention them here.

https://medium.com/siliconwat/data-structures-in-javascript-1b9aed0ea17c


How does it necessary to make the data structure by coding?

Top comments (0)