Skip to content

Commit 946822a

Browse files
back link
1 parent 7372537 commit 946822a

File tree

14 files changed

+28
-0
lines changed

14 files changed

+28
-0
lines changed

Arrays/array.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[← Back to Home](../index.md)
2+
13
Arrays are one of the most fundamental data structures in JavaScript. They are used to store collections of values, and provide a variety of methods for manipulating and working with those values.
24

35
declaring an array:

Closures/closures.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[← Back to Home](../index.md)
2+
13
# JavaScript Closures: In-Depth Guide with Examples
24
A closure is a function that has access to the parent scope, even after the parent function has closed.
35
A closure is formed when a function remembers the variables fro its lexical scope even when the function is executed outside its lexical scope.

JS-Interview-Questions/HigherOrderFunction.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[← Back to Home](../index.md)
2+
13
# Higher Order Functions in JavaScript
24

35
## What is a Higher Order Function?

JS-Interview-Questions/closures.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[← Back to Home](../index.md)
2+
13
# JavaScript Interview Questions: Closures Edition
24

35

JS-Interview-Questions/eventloop.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[← Back to Home](../index.md)
2+
13
# JavaScript Event Loop - Complete Interview Guide
24

35
## Table of Contents

JS-Interview-Questions/map-reduce-filters.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[← Back to Home](../index.md)
2+
13
# JavaScript Array Methods: map, filter, and reduce
24

35
## Introduction

async-await/async-await.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[← Back to Home](../index.md)
2+
13
# JavaScript Async/Await
24

35
## Table of Contents

functions/functions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[← Back to Home](../index.md)
2+
13
# JavaScript Functions: Concepts and Examples
24

35

index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
- [loops](loops/loops.md)
66
- [String](string/string.md)
77
- [Arrays](Arrays/array.md)
8+
- [Sets](map-set/set.md)
89
- [JavaScript Regular Expression](string/regex.md)
910
- [Functions](functions/functions.md)
11+
- [Callbacks](promises/callback.md)
1012
- [Closures](Closures/closures.md)
1113
- [Event Loop](JS-Interview-Questions/eventloop.md)
1214
- [Higher Order Functions](JS-Interview-Questions/HigherOrderFunction.md)

loops/loops.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[← Back to Home](../index.md)
2+
13
# JavaScript Loops: A Complete Guide
24

35
## 1. Why Loops?

0 commit comments

Comments
 (0)