feat: add Implement a Pig Latin Translator lab (#62128)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Anna <a.rcottrill521@gmail.com>
This commit is contained in:
Ilenia
2025-09-23 17:53:55 +02:00
committed by GitHub
parent 5dda96afc0
commit 60697413b3
5 changed files with 130 additions and 0 deletions
+7
View File
@@ -3737,6 +3737,13 @@
"title": "Build a RegEx Sandbox",
"intro": ["In this lab you'll build a regex sandbox."]
},
"lab-pig-latin": {
"title": "Implement a Pig Latin Translator",
"intro": [
"In this lab, you'll implement a Pig Latin translator using JavaScript.",
"You'll practice string manipulation, conditional logic, and regular expressions."
]
},
"lab-smart-word-replacement": {
"title": "Build a Smart Word Replacement Function",
"intro": [
@@ -0,0 +1,9 @@
---
title: Introduction to the Implement a Pig Latin Translator
block: lab-pig-latin
superBlock: full-stack-developer
---
## Introduction to the Implement a Pig Latin Translator
In this lab, you'll implement a Pig Latin translator using JavaScript. You'll practice string manipulation, conditional logic, and regular expressions.