From fb32931c5ea7695c6fd14b9a6cd0266681eebc74 Mon Sep 17 00:00:00 2001 From: Shane T Date: Tue, 30 Jul 2024 10:31:10 -0600 Subject: [PATCH] move fetch and JSON --- src/content/block/unit1.md | 2 +- src/content/prepare/unit1.md | 4 ++-- src/content/prepare/unit1b.md | 4 ++-- src/content/prepare/unit2.md | 4 ++-- src/content/prepare/unit2a.md | 4 ++-- src/content/semester/unit1.md | 4 ++-- src/content/semester/unit2.md | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/content/block/unit1.md b/src/content/block/unit1.md index 6394ac9..cb5df83 100644 --- a/src/content/block/unit1.md +++ b/src/content/block/unit1.md @@ -15,7 +15,7 @@ tags: [ ## Ponder - [Course Setup](../../prove/setup/) -- [Fetch Basics](https://byui-cit.github.io/learning-modules/modules/js/fetch-basics/) +- [Practice with JSON](https://byui-cit.github.io/learning-modules/modules/js/json/ponder1/) ## Prove diff --git a/src/content/prepare/unit1.md b/src/content/prepare/unit1.md index 35ffc14..e654ce7 100644 --- a/src/content/prepare/unit1.md +++ b/src/content/prepare/unit1.md @@ -16,8 +16,8 @@ time: 60min "Can you explain how to declare and use variables in javascript?", "What is the difference between let and const?", "Why do variables need to be declared?", "What are primitives in Javascript?", "What are literals in Javascript?", "What does it mean to be weakly typed?", "How can I store lists in Javascript?" - **Manipulating documents (DOM) with javascript**: "What is the Document Object Model?", "How can I manipulate an html document with javascript?", "How can I add elements to the DOM?", "How can I remove elements from the DOM?", "How can I add or remove attributes from elements in the DOM?","What is the difference between element.innerHTML and element.insertAdjacentHTML?" -- **Javascript Fetch**: -"What is Fetch in Javascript?", "What does it mean to be asynchronous in Javascript?", "What is a promise?", "How can I use promises with Fetch?", "How can I use Fetch to retrieve data from a JSON file?", "How can I use Fetch to retrieve data from a REST API such as the pokeapi?" +- **JSON (Javascript Object Notation)**: +"What is JSON?", "What does it mean to parse JSON?", "How could I parse JSON in Javascript?", "What does it mean to stringify?" "How could I stringify JSON in Javascript?" "What is the difference between JSON and XML?" - **ES Modules**: "What is an ES Module?", "How do I use an ES Module?", "How can ES Modules help me organize my code?" diff --git a/src/content/prepare/unit1b.md b/src/content/prepare/unit1b.md index f627ba2..56fdfea 100644 --- a/src/content/prepare/unit1b.md +++ b/src/content/prepare/unit1b.md @@ -3,7 +3,7 @@ title: Unit 1 Readings - Part 2. time: 30min --- -- **Javascript Fetch** : -"What is Fetch in Javascript?", "What does it mean to be asynchronous in Javascript?", "What is a promise?", "How can I use promises with Fetch?", "How can I use Fetch to retrieve data from a JSON file?", "How can I use Fetch to retrieve data from a REST API such as the pokeapi?" +- **JSON (Javascript Object Notation)**: +"What is JSON?", "What does it mean to parse JSON?", "How could I parse JSON in Javascript?", "What does it mean to stringify?" "How could I stringify JSON in Javascript?" "What is the difference between JSON and XML?" - **ES Modules**: "What is an ES Module?", "How do I use an ES Module?", "How can ES Modules help me organize my code?" diff --git a/src/content/prepare/unit2.md b/src/content/prepare/unit2.md index 92b33ea..42f8c0f 100644 --- a/src/content/prepare/unit2.md +++ b/src/content/prepare/unit2.md @@ -3,10 +3,10 @@ title: Unit 2 Exploration. time: 40min --- +- **Javascript Fetch**: +"What is Fetch in Javascript?", "What does it mean to be asynchronous in Javascript?", "What is a promise?", "How can I use promises with Fetch?", "How can I use Fetch to retrieve data from a JSON file?", "How can I use Fetch to retrieve data from a REST API such as the pokeapi?" - **APIs (Application Programming Interface)**: "What is an API?", "How could I use the national park service api to get information about Yellowstone national park?" "How could I use the national park service api to get information about all national parks?", "How could I use the national park service api to get information about all national parks in a specific state?" -- **JSON (Javascript Object Notation)**: -"What is JSON?", "What does it mean to parse JSON?", "How could I parse JSON in Javascript?", "What does it mean to stringify?" "How could I stringify JSON in Javascript?" "What is the difference between JSON and XML?"