Guest User

Untitled

a guest
Feb 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. const imdb = require('../src/imdb_service.js');
  2.  
  3. function price(imdbId, fetch_rating) {
  4. let rating = fetch_rating(imdbId);
  5.  
  6. let base_price = 3.95;
  7.  
  8. if (rating >= 8) {
  9. base_price += 1.0;
  10. }
  11. if (rating < 4) {
  12. base_price -= 1.0;
  13. }
  14.  
  15. return base_price;
  16. }
  17.  
  18. module.exports = price;
Add Comment
Please, Sign In to add comment