# Welcome to js-lessons
### Interactive js exercises
---
## Preface
js-lessons is a framework of interactive exercises written in JS, for running in any (or at least in the new ones)
browser. If you wanna make a new set of exercises just make a fork of the repository stored in [js-lessons](https://github.com/jefersonla/js-lessons) and create your own JS set of exercises.
js-lessons is based on [learnrx](http://reactivex.io/learnrx/) functional programing exercise, available in
[learnrx-repo](http://reactivex.io/learnrx/), it uses [underscore](http://underscorejs.org/) to make it eficient, and
is compatible with markdown and jekyll too. Ahh we use [my-json](http://myjson.com/) to store exercises too, but you can
remove this part if you don't want to.
### Finishing the Interactive Exercises
js-lessons is not just a "tutorial", is much more than that, js-lessons is a **series of interactive exercises that you
can fill out right in your browser!** dude! It's awesome just edit the code according to the question and hit "Run",
if the code is working you can proceed to the next question, if don't the error will appear and you just need to
correct and hit go again, until the code works, nice uh!?
** Note 1: ** Use "F4" key to toggle full screen mode in editor, and press "ESC" or "F4" to leave this mode;
** Note 2: ** You can use "CTRL + SPACE" to active autocomplete;
** Note 3: ** Every "console.log()", below each question will appear in output div;
** Note 4: ** We use jshint to check the syntax of your code, but you can disable this too;
** Note 5: ** You can choose the template of the page and the editors. We have a beta version too
[js-lessons.BETA](beta.html), with a beta version of strapdown, which is not recomended.
** ! This exercise is just for test purpose, and documentation, so don't use it for real learning. **
### Personal Configurations
Select a theme for CodeMirror editors
Select a theme for this page
## Introduction
The Array is Javascript's only collection type. Arrays are everywhere. We're going to add the five functions to the Array type, and in the process make it much more powerful and useful. As a matter of fact, Array already has the map, filter, and reduce functions! However we're going to reimplement these functions as a learning exercise.
This section will follow a pattern. First we'll solve problems the way you probably learned in school, or on your own by reading other people's code. In other words, we'll transform collections into new collections using loops and statements. Then we'll implement one of the five functions, and then use it to solve the same problem again *without* the loop. Once we've learned the five functions, you'll learn how to combine them to solve complex problems with very little code. The first two exercises have been completed in advance, but please look them over carefully!
## Chapter 1 - Traversing an Array
### Exercise 1
#### Print all the names in an array
// Traverse array with for loop
function(str, info) {
preVerifierHook();
var fun = eval("(" + str + ")");
var items = [];
var got;
var expected = '["Ben","Brian","Jafar","Matt","Priya"]';
fun({
log:function(name) {
items.push(name);
console.log(name);
}
});
got = JSON.stringify(items.sort());
if(got === expected) {
return "Success!"
}
else {
showLessonErrorMessage(expected, JSON.stringify(items.sort(), undefined, 4), 'Order does not matter', info);
}
}
Debug Console
### Exercise 2
#### Use forEach to print all the names in an array
Let's repeat the previous exercise using the forEach function.
// Traverse array with for loop
function(str, info) {
preVerifierHook();
var fun = eval("(" + str + ")");
var items = [];
var got;
var expected = '["Ben","Brian","Jafar","Matt","Priya"]';
fun({
log:function(name) {
items.push(name);
console.log(name);
}
});
got = JSON.stringify(items.sort());
if(got === expected) {
return "Success!"
}
else {
showLessonErrorMessage(expected, JSON.stringify(items.sort(), undefined, 4), 'Order does not matter', info);
}
}
Debug Console
## Chapter 2 - Projecting Arrays
### Exercise 3
#### Project an array of videos into an array of {id,title} pairs using forEach()
Applying a function to a value and creating a new value is called a projection. To project one array into another, we apply a projection function to each item in the array and collect the results in a new array.
For each video, add a projected {id, title} pair to the videoAndTitlePairs array.
// Projection with with forEach
function(str, info) {
preVerifierHook();
var fun = eval("(" + str + ")"),
videoAndTitlePairs = fun(),
expected = '[{\"id\":675465,\"title\":\"Fracture\"},{\"id\":65432445,\"title\":\"The Chamber\"},{\"id\":70111470,\"title\":\"Die Hard\"},{\"id\":654356453,\"title\":\"Bad Boys\"}]';
// Sorting by video id
videoAndTitlePairs = _.sortBy(videoAndTitlePairs, function(video) { return video.id });
if (JSON.stringify(videoAndTitlePairs) === expected) {
return "YUPPPEEEE!";
}
else {
showLessonErrorMessage(expected, JSON.stringify(videoAndTitlePairs, undefined, 4), "", info);
}
}
Debug Console
## The end!
### Congratulations!!! :D
I hope you enjoyed use js-lessons as I enjoyed programming it!
Created By ** Jeferson Lima ** * a fan of penguins *.