Open in app
Home
Notifications
Lists
Stories

Write
Coccagerman
Coccagerman

Home

About

Aug 31, 2021

Data structures — Doubly linked lists

Doubly 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 list each value is considered a node, and each node is connected with the following value in the list (or null in case the…

Programming

3 min read

Data structures — Doubly linked lists
Data structures — Doubly linked lists

Aug 27, 2021

Data structures — Trees

Trees 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 nodes. Trees are formed by a root node (the first node on the tree), and all the nodes that come off that root are called children…

Programming

7 min read

Data structures — Trees
Data structures — Trees

Aug 22, 2021

Data structures — Queues

Queues are a data structure that store information in the form of a list, allowing only adding and removing elements under a FIFO pattern (first in, first out). In queues, elements can’t be added or removed out of order, they always have to follow the FIFO pattern. Some examples of…

Programming

2 min read

Data structures — Queues
Data structures — Queues

Aug 22, 2021

Data structures — Stacks

Stacks are a data structure that store information in the form of a list, allowing only adding and removing elements under a LIFO pattern (last in, first out). In stacks, elements can’t be added or removed out of order, they always have to follow the LIFO pattern. Some examples of…

Coding

2 min read

Data structures — Stacks
Data structures — Stacks

Aug 22, 2021

Data structures — Singly linked lists

Singly linked lists are a type of data structure that store values in the form of a list. …

Programming

7 min read

Data structures — Singly linked lists
Data structures — Singly linked lists

Aug 20, 2021

Data structures — Objects

In JavaScript, an object is a collection of key-value pairs, similar to a map, dictionary, or hash-table in other programming languages. An Object is a collection of properties and methods. A Property is a key-value pair that contains a name and a value. A Property Name is a unique value…

Programming

2 min read

Data structures — Objects
Data structures — Objects

Aug 20, 2021

Data structures — Arrays

An array is a collection of items stored at contiguous memory locations. Each item can be accessed through its index (position) number. Arrays always start at index 0, so in an array of 4 elements we could access the 3rd element using the index number 2. The length property of…

Programming

2 min read

Data structures — Arrays
Data structures — Arrays

Aug 20, 2021

Data structures

In computer science, a data structure is a data organization, management, and storage format that enables efficient access and modification. More precisely, a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data. Different types of…

Programming

3 min read

Data structures
Data structures

Aug 20, 2021

Prototypes, 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 an array that it can .sort()? We never defined these methods manually, right? The answer is that these methods come built-in within each type of…

Programming

3 min read

Prototypes, inheritance and why people say that in javascript everything is an object.
Prototypes, inheritance and why people say that in javascript everything is an object.

Aug 20, 2021

Constructor functions in javascript

Constructor functions are functions that are used to construct new objects. The new operator is used to create new instances based off a constructor function. …

Java Script

1 min read

Constructor functions in javascript
Constructor functions in javascript
Coccagerman

Coccagerman

#KeepCoding #KeepLearning

Following
  • Kairsten Fay

    Kairsten Fay

  • Kait Hoehne

    Kait Hoehne

  • Cristian Moreno

    Cristian Moreno

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Knowable