From c55673c1a31324f9ae0ebcd1a42faf698c0a5d99 Mon Sep 17 00:00:00 2001 From: Deepak gupta <91896859+guptadeepak8@users.noreply.github.com> Date: Wed, 12 Oct 2022 03:36:37 +0530 Subject: [PATCH] Added content to data structure readme.md (#2325) * Added content to data structure readme.md Added basic understanding of data structures with a free-read content * Update readme.md * Update content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md * Update content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md Co-authored-by: Kamran Ahmed --- .../content/104-javascript-data-structures/readme.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md b/content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md index 58f2fde18..b622c8755 100644 --- a/content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md +++ b/content/roadmaps/106-javascript/content/104-javascript-data-structures/readme.md @@ -1 +1,6 @@ -# Javascript data structures \ No newline at end of file +# Data Structures + +A Data structure is a format to organize, manage and store data in a way that allows efficient access and modification. JavaScript has primitive (built-in) and non-primitive (not built-in) data structures. Primitive data structures come by default with the programming language and you can implement them out of the box (like arrays and objects). Non-primitive data structures don't come by default and you have to code them up if you want to use them. + +Free Content + Data structures