Giter Club home page Giter Club logo

lab-javascript-all-times-movies's Introduction

Ironhack Logo

All Times Movies

Introduction

We just learned some awesome javascript methods, that will help us a lot to manipulate objects. So in this exercise, we will focus on practice them, so it is mandatory to implement at least one of them in each iteration.

Best way to practice is to work with real data and challenges that we will deal in the future. In the data.js file you will find an array of info about The best 250 movies of all times according to IMDB Ranking and you have to process it to display what each iteration ask! ๐Ÿ’ช

Requirements

  • Practice Javascript advance methods
  • Use map, reduce, filter and sort to manipulate arrays

Submission

Upon completion, run the following commands:

$ git add .
$ git commit -m "done"
$ git push origin master

Navigate to your repo and create a Pull Request -from your master branch to the original repository master branch.

In the Pull request name, add your campus, name and last names separated by a dash "-".

Starter code

The src/data.js contains an array of 250 movies, each of them with all the info you will need about the movies to finish the iterations. Here you can see an example of how the data is display:

{
  "title":"The Shawshank Redemption",
  "year":"1994",
  "director":"Frank Darabont",
  "duration":"2h 22min",
  "genre":["Crime","Drama"],
  "rate":"9.3"
}

Deliverables

All the files that compose the project, including the HTML, and JavaScript.

Instructions

Let's start working on the solutions. We recommend to finish each iteration before moving to the next. And be careful to manipulate the array movies, you will need it for every iteration.

You have to work on the src/movies.js file.

Tests

Ohh yes! We have our beloved tests, and you already know how this works. Open the SpecRunner.html file on your browser and start coding to pass the test. Remember to focus on one test at a time and read really carefully the instructions to understand what you have to do.

Iteration 1: Time Format

We get the info from the IMDB web page, but the duration info was saved in a format that difficult us a lot to compare movies.

Finding the longest movie is almost impossible using that format, so let's change it!

๐Ÿ’ก Remember we have a methods o create a new array from another one!

  • Create a turnHoursToMinutes method that receive an array as parameter, replace the duration info of each of the movies for it equivalent in minutes. For example:
{
  "title":"The Shawshank Redemption",
  "year":"1994",
  "director":"Frank Darabont",
  "duration":"2h 22min",
  "genre":["Crime","Drama"],
  "rate":"9.3"
}

Should be:

{
  "title":"The Shawshank Redemption",
  "year":"1994",
  "director":"Frank Darabont",
  "duration":"142",
  "genre":["Crime","Drama"],
  "rate":"9.3"
}

You must return a new array with all the info about the movie, not modify the original array!

Iteration 2: All rates average

These are the best movies based on their rates, so supposedly all of them have an awesome rate. In this iteration, we want to know the average rate of all of them and display it on the console. Create a ratesAverage method that receive an array as a parameter and solve the challenge.

The rate must be returned rounded to 2 decimals!

๐Ÿ’ก Maybe you want to "reduce" the data to a single value ๐Ÿ˜‰

Iteration 3: Drama movies

Drama is the genre that repeats the most on our array, apparently, people love drama! ๐Ÿ‘€

Create a dramaMoviesRate that receive an array as a parameter to get the average rate of all drama movies! Let's see if it is better than the general average.

Again, rounded to 2 decimals!

Print on the console the result!

Iteration 4: Ordering by the duration

We need to sort the movies in ascending order by their duration. This should be easy using one of the methods we just learn. Create a method orderByDuration that receives an array as parameter and return the sorted array.

If two movies have the same duration, order them in alphabeticall order by their title!

Iteration 5: Steven Spielberg. The best?

One of the most famous directors in cinema is Steven Spielberg, and he has some really awesome drama movies that show up on our list, but we want to know how many!

Go ahead and create a howManyMovies method that receives an array as a parameter and filter ๐Ÿ‘€ the array so we can have only the drama movies where Steven Spielberg is the director.

Iteration 6: Alphabetic Order

Another famous way to order the movies is to sort them alphabetically using the title key. But in this case we only need to print the title of the first 20. Easy Peasy for an expert like you ๐Ÿ˜‰

Create a orderAlphabetically method, that receive an array and return an array of first 20 titles, alphabetically ordered. Return only the title of each movie, and if the array you receive have less than 20 movies, return all of them order

BONUS Iteration: Best yearly rate average

Let's complicated a bit this thing. We always listen to classic movies, but we want to know, which year has the best average rate, so we can declare officially the BEST YEAR FOR CINEMA!

Go ahead and find which year have the best average rate for the movies that were released on that year!

Happy coding!

lab-javascript-all-times-movies's People

Contributors

schaabm avatar papuarza avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.