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 8491fd9

Browse files
Update chapter 2
- Convert back to drawio.svg - added tutorial readme markdown file - add assests to chapter 2
1 parent 271ef78 commit 8491fd9

33 files changed

+185
-0
lines changed

‎Code-Red-Challenge/code-red.png

274 KB
Loading[フレーム]
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# What did you build
2+
3+
## About me
4+
5+
## The problem you wanted to solve
6+
7+
## What is Subscribe Button
8+
9+
# Process
10+
11+
## Tech stack
12+
Node.js,
13+
ParcelJS,
14+
React,
15+
16+
## The process of building Subscribe Button
17+
18+
19+
# Conclusion
20+
## Key learnings
21+
## Tips and advice
22+
## Final thoughts and next steps
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const person = 'Hans';
2+
// person = "some guy";
3+
// TypeError: Assignment to constant variable.
4+
console.log(person);
5+
6+
let otherPerson = "the dude";
7+
otherPerson = "someone";
8+
console.log(otherPerson); // someone
9+
10+
11+
const mutable = {
12+
name: 'Mr M',
13+
title: 'person'
14+
};
15+
mutable.title = 'teacher';
16+
console.log(mutable);
157 KB
Loading[フレーム]
77.9 KB
Loading[フレーム]

0 commit comments

Comments
(0)

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