CoccagermanData structures — Doubly linked listsDoubly linked lists are very similar to singly linked lists, a type of data structure that store values in the form of a list. Within the…Aug 31, 2021Aug 31, 2021
CoccagermanData structures — TreesTrees are a data structures that link nodes in a parent/child relationship, in the sense that there’re nodes that depend or come off other…Aug 27, 2021Aug 27, 2021
CoccagermanData structures — QueuesQueues are a data structure that store information in the form of a list, allowing only adding and removing elements under a FIFO pattern…Aug 22, 2021Aug 22, 2021
CoccagermanData structures — StacksStacks are a data structure that store information in the form of a list, allowing only adding and removing elements under a LIFO pattern…Aug 22, 2021Aug 22, 2021
CoccagermanData structures — Singly linked listsSingly linked lists are a type of data structure that store values in the form of a list. Within the list each value is considered a node…Aug 22, 2021Aug 22, 2021
CoccagermanData structures — ObjectsIn JavaScript, an object is a collection of key-value pairs, similar to a map, dictionary, or hash-table in other programming languages.Aug 20, 2021Aug 20, 2021
CoccagermanData structures — ArraysAn array is a collection of items stored at contiguous memory locations.Aug 20, 2021Aug 20, 2021
CoccagermanData structuresIn computer science, a data structure is a data organization, management, and storage format that enables efficient access and…Aug 20, 2021Aug 20, 2021
CoccagermanPrototypes, inheritance and why people say that in javascript everything is an object.Did you ever wonder how strings, arrays or objects “know” the methods each of them have? How does a string know it can .toUpperCase() or…Aug 20, 2021Aug 20, 2021
CoccagermanConstructor functions in javascriptConstructor functions are functions that are used to construct new objects. The new operator is used to create new instances based off a…Aug 20, 2021Aug 20, 2021