Advertisement
angebogen

Untitled

Mar 21st, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. const tempreturess = (dat) => {
  2. const y = dat.data.map(x=>x.temp);
  3. return y
  4.  
  5. }
  6.  
  7. const getHourlyWeathe = () =>{
  8. return $.get(`https://api.weatherbit.io/v2.0/forecast/3hourly?city=sofia&key=9591750b572f4a06ad2c58eb7e83e00e`);
  9.  
  10. };
  11.  
  12. const cityClickk = () => {
  13. getHourlyWeathe()
  14. .then(tempreturess);
  15. }
  16.  
  17. console.log(cityClickk())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement