Skip to content

Commit e96a675

Browse files
committed
fix(docs): shorten page titles for SEO optimization
1 parent 7fcde19 commit e96a675

38 files changed

Lines changed: 38 additions & 38 deletions

docs/concepts/algorithms-big-o.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Algorithms & Big O: Measuring Code Performance in JavaScript"
2+
title: "Algorithms & Big O"
33
sidebarTitle: "Algorithms & Big O: Measuring Code Performance"
44
description: "Learn Big O notation and algorithms in JavaScript. Understand time complexity, implement searching and sorting algorithms, and recognize common interview patterns."
55
---

docs/concepts/async-await.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "async/await: Writing Async Code That Looks Synchronous in JavaScript"
2+
title: "async/await"
33
sidebarTitle: "async/await: Writing Async Code That Looks Synchronous"
44
description: "Learn async/await in JavaScript. Syntactic sugar over Promises that makes async code readable. Covers error handling with try/catch, parallel execution with Promise.all, and common pitfalls."
55
---

docs/concepts/call-stack.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Call Stack: How Function Execution Works in JavaScript"
2+
title: "Call Stack"
33
sidebarTitle: "Call Stack: How Function Execution Works"
44
description: "Learn how the JavaScript call stack tracks function execution. Understand stack frames, LIFO ordering, execution contexts, stack overflow errors, and debugging with stack traces."
55
---

docs/concepts/callbacks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Callbacks: The Foundation of Async JavaScript"
2+
title: "Callbacks"
33
sidebarTitle: "Callbacks: The Foundation of Async"
44
description: "Learn JavaScript callbacks, functions passed to other functions to be called later. Understand sync vs async callbacks, error-first patterns, callback hell, and why Promises were invented."
55
---

docs/concepts/clean-code.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Clean Code: Writing Readable JavaScript"
2+
title: "Clean Code"
33
sidebarTitle: "Clean Code: Writing Readable JavaScript"
44
description: "Learn clean code principles for JavaScript. Covers meaningful naming, small functions, DRY, avoiding side effects, and best practices to write maintainable code."
55
---

docs/concepts/currying-composition.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Currying & Composition: Functional Patterns in JavaScript"
2+
title: "Currying & Composition"
33
sidebarTitle: "Currying & Composition: Functional Patterns"
44
description: "Learn currying and function composition in JavaScript. Build reusable functions from simple pieces using curry, compose, and pipe for cleaner, modular code."
55
---

docs/concepts/data-structures.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Data Structures: Organizing and Storing Data in JavaScript"
2+
title: "Data Structures"
33
sidebarTitle: "Data Structures: Organizing and Storing Data"
44
description: "Learn JavaScript data structures from built-in Arrays, Objects, Maps, and Sets to implementing Stacks, Queues, and Linked Lists. Understand when to use each structure."
55
---

docs/concepts/design-patterns.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Design Patterns: Reusable Solutions to Common Problems in JavaScript"
2+
title: "Design Patterns"
33
sidebarTitle: "Design Patterns: Reusable Solutions"
44
description: "Learn JavaScript design patterns like Module, Singleton, Observer, Factory, Proxy, and Decorator. Understand when to use each pattern and avoid common pitfalls."
55
---

docs/concepts/dom.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "DOM: How Browsers Represent Web Pages in JavaScript"
2+
title: "DOM Manipulation"
33
sidebarTitle: "DOM: How Browsers Represent Web Pages"
44
description: "Learn how the DOM works in JavaScript. Understand how browsers represent HTML as a tree, select and manipulate elements, traverse nodes, and optimize rendering performance."
55
---

docs/concepts/equality-operators.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Equality Operators: == vs === Type Checking in JavaScript"
2+
title: "Equality: == vs ==="
33
sidebarTitle: "Equality Operators: == vs === Type Checking"
44
description: "Learn JavaScript equality operators == vs ===, typeof quirks, and Object.is(). Understand type coercion, why NaN !== NaN, and why typeof null returns 'object'."
55
---

0 commit comments

Comments
 (0)