
Estimated time needed: [] minutes
Welcome to your instructional lab!
After completing this lab, you will be able to:
function add(a, b) {
return a+b
}
Note: All code blocks display a copy to clipboard button for your readers which allows them to copy the content of the code block with a single click. No more highlighting the text, clicking on
Ctrl+C(Command+Con Apple Mac) and possibly missing a few characters.
git status to list all new or modified files that haven’t yet been committed.You can find various buttons in the toolbar that can make your instructions better. Here are some of them:
Creates a question in the instructions that includes hidden answers the learner can reveal with a click.
Click here to view the code
router.get("/:email",(req,res)=>{
// Extract the email parameter from the request URL
const email = req.params.email;
// Filter the users array to find users whose email matches the extracted email parameter
let filtered_users = users.filter((user) => user.email === email);
// Send the filtered_users array as the response to the client
res.send(filtered_users);
});Here is link to Github
Insert an image into your instructions

In this exercise, you will < short sentence describing what’s done in this exercise >.
Step 1 details …
Step 2 details with sample screenshot…
Step 3 details…
In this exercise, you will …
Step 1 in Task A in Ex 2
Step 2 in Task A in Ex 2
Step 1 details
Step 2 details
| Name | Age | Profession |
|---|---|---|
| John Doe | 30 | Software Engineer |
| Jane Doe | 28 | Data Scientist |
| Sam Smith | 35 | Product Manager |
Add ending info here, if required, and rename the title accordingly. Otherwise, remove this optional section.
Sample’s - No requirement of adding any /’s or 's
< Contributor 1 Name >, < Contributor 2 Name >, etc.
| Date | Version | Changed by | Change Description |
|---|---|---|---|
| yyyy-mm-dd | 0.1 | changer name | Initial version created |