Platform
Resources
Pricing
Sign in
Get started
mmakutonin
Workspace
Fork
Published
IT-280B FA'19
By
mmakutonin
Edited
Jul 16, 2019
IT-280B FA'19
August 26: Variables, Strings, and Math
Aug 28th: Advanced Comparisons, Variables, Booleans, and Type Coersion
Aug 30th: if, for, while, and some functions
Sep 2nd: Objects and More Functions!
Sep 4: Arrays and HTML Project
Sep 9: Advanced Functions I: Closures, IIFEs, Factory Functions, and Modules
September 11: Advanced Functions II: Promises, Async/Await, and APIs
September 13: Advanced Primitives I: String Templates and Padding
September 16: Advanced Primitives II: Destructuring and ...rest
September 18: Code Review: Primitives, Functions, and Objects
September 20: Advanced Functions III: Higher Order Functions (HOFs)
September 23: Advanced Objects I: Prototypes
September 25: Advanced Functions IV: Advanced this(Bind, Call, Apply), and Function===Object
September 27th: Advanced Objects II: Classes
September 30: Advanced Objects III: Class Inheritance
October 2: Advanced Functions 5: Arrow Functions and Default Function Parameters, and functional ...rest
October 4: let and const
October 9: Review and Export/Import
October 11th: Intro to React
October 14th: React Day 2
October 16th: React Day 3
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
{
var
a1
,
a2
,
a3
,
a4
,
a5
;
[
a1
,
a2
,
a3
,
a4
,
a5
]
=
array
return
`
a1= ${
a1
},
a2= ${
a2
},
a3= ${
a3
},
a4= ${
a4
},
a5= ${
a5
}
`
}
Insert cell
{
var
{
bob
,
your
,
but
,
is
,
a
}
=
obj
//this is a valid syntax if you don't want to declare the variables separately...
return
`
bob= ${
bob
},
your= ${
your
}
but= ${
but
}
is= ${
is
}
a= ${
a
}
`
}
Insert cell
Insert cell
{
var
bob
,
rest
;
(
{
bob
,
...
rest
}
=
obj
)
return
`Bob: ${
bob
}, everything else: ${
JSON
.
stringify
(
rest
)
}`
}
Insert cell
{
//because strings are just arrays...
var
start
,
rest
;
(
[
start
,
...
rest
]
=
str
)
return
start
+
"/"
+
rest
}
Insert cell
{
var
start
,
rest
;
(
[
start
,
...
rest
]
=
array
)
return
start
+
"/"
+
rest
}
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
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
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
array
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
obj
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
str
Edit
Add comment
Copy import
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
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