Improving Your JavaScript's Performance
  • Introduction
  • Do we need to care about performance issues?
  • Deciding What To Optimize
    • Why Data?
    • What Types of Data Do I Need?
    • User Analytics
    • The Browser - Loading
      • The Browser - Profiling on the Processing Tab
      • The Browser - Throttling
      • The Browser - Memory Usage
    • The Server
      • Profiling Your Code On The Server
      • Using Profiling Data - NodeJS
  • Optimization Concepts
    • Overall Application Structure (or Communication)
    • Structures and Algorithms
    • JavaScript
    • Browsers
Powered by GitBook
On this page
  1. Optimization Concepts

Structures and Algorithms

Basic computer science concepts.

Structures and algorithms is a discipline that has many books written on the subject and is covered extensively in computer science classes at universities. The following section will not be an extensive treatise on the topic but will briefly cover some of the broad concepts and some specifics for structures and algorithms in JavaScript.

PreviousOverall Application Structure (or Communication)NextJavaScript

Last updated 6 years ago