1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/** @jsxImportSource https://esm.sh/react */
import { generateLessonHtml } from "https://esm.town/v/petermillspaugh/lessonTemplate";
import { renderToString } from "npm:react-dom/server";
/*
* Note: this lesson is a work in progress 👷‍♂️
*/
const TITLE = "Elaboration & reflection";
const FILL_BLANK = <>TODO</>;
const CONTENT = (
<>
<h2>Elaboration</h2>
<p>
Elaboration is the process of explaining newly learned things in your own words and making connections to stuff
you already know. It’s an effective learning technique.
</p>
<p>
Elaboration strengthens learning. That’s when you explain something you’ve learned in different terms, connecting
it to something else you know.
</p>
<h2>Reflection</h2>
<p>
Writing down questions or mentally going through what you’ve learned after you learn it. Reflection aids learning.
</p>
<p>That's why each lesson ends with a reflection writing exercise.</p>
</>
);
const QUIZ = [
{
question: "",
answer: "",
},
];
export const elaborationAndReflection = {
title: TITLE,
fillBlank: FILL_BLANK,
quiz: QUIZ,
fetchHtml: (email: string, lesson: number) =>
generateLessonHtml({
email,
lesson,
title: `Lesson ${lesson + 1}: ${TITLE}`,
fillBlank: FILL_BLANK,
content: CONTENT,
quiz: QUIZ,
}),
};
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
January 20, 2024