Skip to content

Commit 627f67f

Browse files
authored
Merge pull request #1552 from microsoft/softchris-patch-9
docs: modernization - the rest
2 parents c46fba0 + fe82727 commit 627f67f

File tree

51 files changed

+10854
-2834
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+10854
-2834
lines changed

1-getting-started-lessons/1-intro-to-programming-languages/README.md

Lines changed: 146 additions & 80 deletions
Large diffs are not rendered by default.

1-getting-started-lessons/2-github-basics/README.md

Lines changed: 161 additions & 129 deletions
Large diffs are not rendered by default.

1-getting-started-lessons/3-accessibility/README.md

Lines changed: 38 additions & 34 deletions
Large diffs are not rendered by default.

10-ai-framework-project/README.md

Lines changed: 533 additions & 43 deletions
Large diffs are not rendered by default.

2-js-basics/1-data-types/README.md

Lines changed: 140 additions & 30 deletions
Large diffs are not rendered by default.
Lines changed: 81 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,87 @@
1-
# Data Types Practice
1+
# Data Types Practice: E-commerce Shopping Cart
22

33
## Instructions
44

5-
Imagine you are building a shopping cart. Write documentation on the data types you would need to complete your shopping experience. For each data type, explain how and why you would use it, and provide an example. The six JavaScript data types are: String, Number, Boolean, Null, Undefined, and Object.
5+
Imagine you are building a modern e-commerce shopping cart system. This assignment will help you understand how different JavaScript data types work together to create real-world applications.
6+
7+
### Your Task
8+
9+
Create a comprehensive analysis of how you would use JavaScript data types in a shopping cart application. For each of the seven primitive data types and objects, you need to:
10+
11+
1. **Identify** the data type and its purpose
12+
2. **Explain** why this data type is the best choice for specific shopping cart features
13+
3. **Provide** realistic code examples showing the data type in action
14+
4. **Describe** how this data type interacts with other parts of the shopping cart
15+
16+
### Required Data Types to Cover
17+
18+
**Primitive Data Types:**
19+
- **String**: Product names, descriptions, user information
20+
- **Number**: Prices, quantities, tax calculations
21+
- **Boolean**: Item availability, user preferences, cart status
22+
- **Null**: Intentionally empty values (like missing discount codes)
23+
- **Undefined**: Uninitialized values or missing data
24+
- **Symbol**: Unique identifiers (advanced use)
25+
- **BigInt**: Large financial calculations (advanced use)
26+
27+
**Reference Types:**
28+
- **Object**: Product details, user profiles, cart contents
29+
- **Array**: List of products, order history, categories
30+
31+
### Example Format for Each Data Type
32+
33+
For each data type, structure your response like this:
34+
35+
```markdown
36+
## [Data Type Name]
37+
38+
**Purpose in Shopping Cart:** [Explain what this data type does]
39+
40+
**Why This Type:** [Explain why this is the best choice]
41+
42+
**Code Example:**
43+
```javascript
44+
// Your realistic code example here
45+
```
46+
47+
**Real-world Usage:** [Describe how this would work in practice]
48+
49+
**Interactions:** [Explain how this data type works with others]
50+
```
51+
52+
### Bonus Challenges
53+
54+
1. **Type Coercion**: Show an example where JavaScript automatically converts between data types in your shopping cart (e.g., string "5" + number 10)
55+
56+
2. **Data Validation**: Demonstrate how you would check if user input is the correct data type before processing
57+
58+
3. **Performance Considerations**: Explain when you might choose one data type over another for performance reasons
59+
60+
### Submission Guidelines
61+
62+
- Create a markdown document with clear headings for each data type
63+
- Include working JavaScript code examples
64+
- Use realistic e-commerce scenarios in your examples
65+
- Explain your reasoning clearly for beginners to understand
66+
- Test your code examples to ensure they work correctly
667
768
## Rubric
869
9-
Criteria | Exemplary | Adequate | Needs Improvement
10-
--- | --- | --- | -- |
11-
Data Types | All six data types are listed, explored in detail, and documented with examples | Four data types are explored with some explanation | Two data types are explored with minimal explanation |
70+
| Criteria | Exemplary (90-100%) | Proficient (80-89%) | Developing (70-79%) | Needs Improvement (Below 70%) |
71+
|----------|---------------------|---------------------|---------------------|------------------------------|
72+
| **Data Type Coverage** | All 7 primitive types and objects/arrays covered with detailed explanations | 6-7 data types covered with good explanations | 4-5 data types covered with basic explanations | Fewer than 4 data types or minimal explanations |
73+
| **Code Examples** | All examples are realistic, working, and well-commented | Most examples work and are relevant to e-commerce | Some examples work but may be generic | Code examples are incomplete or non-functional |
74+
| **Real-world Application** | Clearly connects each data type to practical shopping cart features | Good connection to e-commerce scenarios | Some connection to shopping cart context | Limited real-world application demonstrated |
75+
| **Technical Accuracy** | All technical information is correct and demonstrates deep understanding | Most technical information is accurate | Generally accurate with minor errors | Contains significant technical errors |
76+
| **Communication** | Explanations are clear, beginner-friendly, and well-organized | Good explanations that are mostly clear | Explanations are understandable but may lack clarity | Explanations are unclear or poorly organized |
77+
| **Bonus Elements** | Includes multiple bonus challenges with excellent execution | Includes one or more bonus challenges well done | Attempts bonus challenges with mixed success | No bonus challenges attempted |
78+
79+
### Learning Objectives
80+
81+
By completing this assignment, you will:
82+
- ✅ **Understand** the seven JavaScript primitive data types and their uses
83+
- ✅ **Apply** data types to real-world programming scenarios
84+
- ✅ **Analyze** when to choose specific data types for different purposes
85+
- ✅ **Create** working code examples that demonstrate data type usage
86+
- ✅ **Explain** technical concepts in beginner-friendly language
87+
- ✅ **Connect** fundamental programming concepts to practical applications

0 commit comments

Comments
 (0)