Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. games: state => state.games,
  2.  
  3. gamesNames: state => {
  4. let games = []
  5. for (let g of state.games) games.push(g.name)
  6. return games
  7. }
  8.  
  9.  
  10. to działa
  11.  
  12.  
  13.  
  14. fortniteList: state => state.fortniteList,
  15.  
  16. fortniteListKD: state => {
  17. let fortniteList = []
  18. for (let g of state.fortniteList) fortniteList.push(g.kdList)
  19. return fortniteList
  20. }
  21.  
  22. a to nie
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement