Skip to content

Commit 484cd4d

Browse files
committed
day 2 anchors
1 parent 7e718e5 commit 484cd4d

File tree

2 files changed

+62
-62
lines changed

2 files changed

+62
-62
lines changed

README.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -26,39 +26,39 @@ Hopefully your walk will be much easier than mine!
2626
- [Run Code extension](/day_01.md#initial-workspace-setup)
2727
- [Introduction to NPM](https://docs.npmjs.com/about-npm/)
2828
- [DAY 2](/day_02.md)
29-
- Syntax, Grammar & Semantics
30-
- Statements
31-
- Expressions
32-
- Contextual Rules
33-
- ECMAScript Types
34-
- Value type groups
35-
- Primitives
36-
- Boolean
37-
- Null
38-
- Undefined
39-
- Number
40-
- BigInt ( stage-3 )
41-
- String
42-
- Symbol
43-
- Composite/Compound
44-
- Object
45-
- Type conversion
29+
- [Syntax, Grammar & Semantics](/day_02.md#syntax-grammar--semantics)
30+
- [Statements](/day_02.md#statements)
31+
- [Expressions](/day_02.md#expressions)
32+
- [Contextual Rules](/day_02.md#semantics)
33+
- [ECMAScript Types](/day_02.md#ecmascript-types)
34+
- [Value type groups](/day_02.md#value-type-groups)
35+
- [Primitives](https://en.wikipedia.org/wiki/Primitive_data_type)
36+
- [Boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type)
37+
- [Null](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Null_type)
38+
- [Undefined](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Undefined_type)
39+
- [Number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type)
40+
- [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#BigInt_type) ( it's still a [Stage 3 proposal](https://github.com/tc39/proposal-bigint) but Chrome already support it and Firefox and Safari are underway. )
41+
- [String](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type)
42+
- [Symbol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Symbol_type) ( new in ES6! )
43+
- [Composite/Compound](/day_02.md#compositecompound)
44+
- [Object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Objects)
45+
- [Type conversion](/day_02.md#type-conversion)
4646
- Explicit ( "type casting" )
4747
- Implicit ( Coercion )
48-
- Operators
49-
- Assignment operators
50-
- Comparison operators
51-
- Arithmetic operators
52-
- Bitwise operators
53-
- Logical operators
54-
- String operators
55-
- Conditional (ternary) operator
56-
- Comma operator
57-
- Unary operators
58-
- Relational operators
59-
- Destructuring
60-
- Operators Precedence
61-
- Spread/Rest
48+
- [Operators](/day_02.md#operators)
49+
- [Assignment operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment)
50+
- [Comparison operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Comparison)
51+
- [Arithmetic operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Arithmetic)
52+
- [Bitwise operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Arithmetic)
53+
- [Logical operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Logical)
54+
- [String operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#String)
55+
- [Conditional (ternary) operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Conditional)
56+
- [Comma operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Comma)
57+
- [Unary operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Unary)
58+
- [Relational operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Relational)
59+
- [Destructuring](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment)
60+
- [Operators Precedence](/day_02.md#operators-precedence)
61+
- [Spread/Rest](/day_02.md#the-case-of-the---spreadrest-operator-)
6262
- [DAY 3](/day_03.md)
6363
- Objects explained
6464
- Objects, the big picture

day_02.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,39 @@
22

33
## DAY 2
44

5-
- Syntax, Grammar & Semantics
6-
- Statements
7-
- Expressions
8-
- Contextual Rules
9-
- ECMAScript Types
10-
- Value type groups
11-
- Primitives
12-
- Boolean
13-
- Null
14-
- Undefined
15-
- Number
16-
- BigInt ( stage-3 )
17-
- String
18-
- Symbol
19-
- Composite/Compound
20-
- Object
21-
- Type conversion
5+
- [Syntax, Grammar & Semantics](#syntax-grammar--semantics)
6+
- [Statements](#statements)
7+
- [Expressions](#expressions)
8+
- [Contextual Rules](#semantics)
9+
- [ECMAScript Types](#ecmascript-types)
10+
- [Value type groups](#value-type-groups)
11+
- [Primitives](https://en.wikipedia.org/wiki/Primitive_data_type)
12+
- [Boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type)
13+
- [Null](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Null_type)
14+
- [Undefined](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Undefined_type)
15+
- [Number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type)
16+
- [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#BigInt_type) ( it's still a [Stage 3 proposal](https://github.com/tc39/proposal-bigint) but Chrome already support it and Firefox and Safari are underway. )
17+
- [String](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type)
18+
- [Symbol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Symbol_type) ( new in ES6! )
19+
- [Composite/Compound](#compositecompound)
20+
- [Object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Objects)
21+
- [Type conversion](#type-conversion)
2222
- Explicit ( "type casting" )
2323
- Implicit ( Coercion )
24-
- Operators
25-
- Assignment operators
26-
- Comparison operators
27-
- Arithmetic operators
28-
- Bitwise operators
29-
- Logical operators
30-
- String operators
31-
- Conditional (ternary) operator
32-
- Comma operator
33-
- Unary operators
34-
- Relational operators
35-
- Destructuring
36-
- Operators Precedence
37-
- Spread/Rest
24+
- [Operators](#operators)
25+
- [Assignment operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Assignment)
26+
- [Comparison operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Comparison)
27+
- [Arithmetic operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Arithmetic)
28+
- [Bitwise operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Arithmetic)
29+
- [Logical operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Logical)
30+
- [String operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#String)
31+
- [Conditional (ternary) operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Conditional)
32+
- [Comma operator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Comma)
33+
- [Unary operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Unary)
34+
- [Relational operators](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Relational)
35+
- [Destructuring](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment)
36+
- [Operators Precedence](#operators-precedence)
37+
- [Spread/Rest](#the-case-of-the---spreadrest-operator-)
3838

3939
## Syntax, Grammar & Semantics
4040

0 commit comments

Comments
 (0)