Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit da9eca8

Browse files
committed
Previous and Next Added
1 parent 8944b88 commit da9eca8

10 files changed

+20
-0
lines changed

‎01-Javascript-Engine.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,5 @@ Each Lexical Environment has three component:
205205
- Environment Record
206206
- Reference to outer environment
207207
- _this_ binding
208+
209+
[Next [JavaScript Variables] -->](./02-All-About-Variables.md)

‎02-All-About-Variables.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,3 +267,7 @@ _To summarize, variables declared with **let** or **const** are hoisted **withou
267267
### Temproal Dead Zone
268268

269269
This is a period during execution where _let/const_ variables are hoisted but not accessible.
270+
271+
<br />
272+
273+
[<-- Previous [JavaScript Engine]](./01-Javascript-Engine.md) <div style="text-align: right;"> [Next [Data Types] -->](03-Data-Types.md)</div>

‎03-Data-Types.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,3 +236,5 @@ console.log(user.firstname);
236236
<!-- ?TODOS -->
237237
<!-- Prototypal Inheritance -->
238238
<!-- Object Protoype -->
239+
240+
[<-- Previous [JavaScript Variables]](./02-All-About-Variables.md) <div style="text-align: right;"> [Next [Type Casting] -->](./04-Type-Casting.md)</div>

‎04-Type-Casting.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,3 +115,5 @@ conole.log(typeof result); //OUTPUT: Boolean
115115
## Type Conversion vs Type Coercion
116116

117117
The key difference between type coercion and type conversion is that type conversion is always implicit whereas type conversion can either be implicit or explicit.
118+
119+
[<-- Previous [Data Types]](./03-Data-Types.md) <div style="text-align: right;"> [Next [Data Structure] -->](./05-Data-Structure.md)</div>

‎05-Data-Structure.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,3 +491,5 @@ console.log(marks); //OUTPUT: Set{}
491491
```
492492
493493
`Set` also provides the `keys()`, `values()` and `entries()` methods just like in `Map`. However, both keys and values are same in `Set`.
494+
495+
[<-- Previous [Type Casting]](./04-Type-Casting.md) <div style="text-align: right;"> [Next [Equality Comparision] -->](./06-Equaltiy-Comparisions.md)</div>

‎06-Equaltiy-Comparisions.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,3 +293,5 @@ Here, deep equality function correctly determines that both `user1` and `user2`
293293
- We can also manually compare the values of properties in the object by accessing the properties of those objects.
294294
- We use shallow equality when the objects to be compared have a lot of properties or if the object is determined at the runtime.
295295
- We use deep equality check if the compared objects have nested objects.
296+
297+
[<-- Previous [Data Structure]](./05-Data-Structure.md) <div style="text-align: right;"> [Next [Loops and Iteration] -->](./07-Loops-And-Iterations.md)</div>

‎07-Loops-And-Iterations.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,3 +187,5 @@ for (let i = 0; i < even.length; i += 1) {
187187

188188
console.log(indexOfSix);
189189
```
190+
191+
[<-- Previous [Equality Comparision]](./06-Equaltiy-Comparisions.md) <div style="text-align: right;"> [Next [Control Flow] -->](./08-Control-Flow.md)</div>

‎08-Control-Flow.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,3 +292,5 @@ throw new RangeError("Age value must be between 16 to 40");
292292

293293
throw new TypeError("Age must be a number");
294294
```
295+
296+
[<-- Previous [Loops and Iteration]](./07-Loops-And-Iterations.md) <div style="text-align: right;"> [Next [JavaScript Operator] -->](./09-JavaScript-Operators.md)</div>

‎09-JavaScript-Operators.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,3 +242,5 @@ In the case of `0 in fruits`, it is checking whether the fruits array has a prop
242242
However, "apple" in fruits is checking whether the fruits array has a property/key of "apple", which it does not, since the elements of the array are not considered keys. Therefore, the expression "apple" in fruits returns `false`.
243243

244244
To check if a value exists in an array, you can use the `includes()` method instead: `fruits.includes("apple")` would return `true` because the value "apple" exists in the array.
245+
246+
[<-- Previous [Control Flow]](./08-Control-Flow.md) <div style="text-align: right;"> [Next [JavaScript Functions] -->](./10-JavaScript-Functions.md)</div>

‎10-JavaScript-Functions.md‎

Whitespace-only changes.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /