Platform
Resources
Pricing
Sign in
Contact us
mmakutonin
Workspace
Fork
Published
Programming For Beginners: Seeq Webinar Series
By
mmakutonin
Edited
Jun 18, 2020
Fork of
Lesson 6: Arrays and HTML Project
Programming For Beginners: Seeq Webinar Series
Intro To Programming Syllabus:
Lesson 1-1: Javascript Basics
Lesson 1-2: Variables, Types, Boolean Algebra, and Comparisons
Lesson 2-1: for and while loops
Lesson 2-2: Intro to Objects, Functions, and this.
Lesson 2-3: Arrays
Lesson 2-4: Scopes, bind, Arrow Functions and Default Function Parameters
Lesson 3-1: let and const
Lesson 3-2: Destructuring and ...rest
Lesson 3-3: Higher Order Functions (HOFs)
Lesson 3-4: Application Programming Interfaces (APIs)
Lesson 3-5: Promises & async/await
Lesson 3-6: Prototypes & Inheritance
Lesson 4-1: IIFEs, Factory Functions, and Modules
Lesson 4-2: Classes
Lesson 4-3 Class Inheritance
Lesson 4-4: Export/Import
Lesson 5-1: Intro to React, React Native, and Expo
Lesson 5-2: this.props and React Event Handling
Lesson 5-3: Lifting this.state up
Lesson 5-4: Functionalizing React (an Intro to Better Practices)
Insert cell
Insert cell
Insert cell
{
var
orderedNumberList
=
{
first
:
1
,
second
:
2
,
third
:
3
,
fourth
:
4
,
fifth
:
5
,
sixth
:
6
,
seventh
:
7
,
eighth
:
8
,
ninth
:
9
,
tenth
:
10
}
return
orderedNumberList
;
}
Insert cell
Insert cell
orderedNumberList
=
[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
]
Insert cell
otherArray
=
[
2
,
1
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
]
Insert cell
Insert cell
orderedNumberList
.
indexOf
(
4
)
;
Insert cell
orderedNumberList
[
2
]
Insert cell
Insert cell
{
var
orderedNumberList
=
[
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
]
return
orderedNumberList
[
9
]
;
}
Insert cell
Insert cell
wonkyArray
=
[
"bob"
,
-
2.5
,
true
,
"Solly the Sexy Saxaphone"
]
Insert cell
Insert cell
emptyArray
=
[
]
//this is how we declare an empty array
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
theirArmy
=
[
"dog1"
,
"dog2"
,
"dog3"
,
"dog4"
]
//do not change
Insert cell
ourArmy
=
[
"superKitty"
]
//do not change
Insert cell
Insert cell
allAnimals
=
ourArmy
+
theirArmy
Insert cell
Insert cell
allAnimalsII
=
allAnimals
.
addDoggo
(
"superDoggo"
)
Insert cell
Insert cell
allAnimalsIII
=
allAnimalsII
.
findIndexOfSuperKitty
(
)
Insert cell
Insert cell
allAnimalsIV
=
allAnimalsII
.
removeThatSuperDoggoCuzITypoedHisNameO
(
)
Insert cell
Insert cell
Insert cell
Insert cell
Purpose-built for displays of data
Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Try it for free
Learn more
Compare fork
Fork
View
Export
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
orderedNumberList
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
otherArray
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
wonkyArray
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
emptyArray
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
theirArmy
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
ourArmy
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
allAnimals
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
allAnimalsII
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
allAnimalsIII
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
allAnimalsIV
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML