📉TECH DEBT
3 LEFT
70% cleared!Goal: Zero 🎯
âš¡
Total XP
0 XP
Level 1 • 0/100 XP
Daily QuestsVIEW ALL
🎯
Earn 10 XP
Start your journey!
Connect your repo to learn from your code.
userService.js
1async function
2 fetchUserData
3(id) {
4 const data = await fetch(
5"/api/users/"
6 + id);
7 const json = data.json();
8 if (data) {
9 return json.user.name;
10 }
11}
Scanning...
XP:+0
🎯SAMPLE QUIZ
What's wrong with this code?
const data = fetch(url)
A)Missing await✓
B)Wrong syntax
C)No error handling
+50 XPâš¡
Your Journey to Conquer
Technical Debt with Glitchy
SECTION 1: CODE QUALITY →
🚀
🔒
🔒
🔒
🔒
🔒
📉TECH DEBT
3 LEFT
70% cleared!Goal: Zero 🎯
âš¡
Total XP
0 XP
Level 1 • 0/100 XP
Daily QuestsVIEW ALL
🎯
Earn 10 XP
Start your journey!
Connect your repo to learn from your code.
