Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. let test_ph_item = {
  2. keyword: '1',
  3. searchVolume: '50',
  4. cpc: '1.23',
  5. competition: '0.71',
  6. results: '1000'
  7. };
  8.  
  9. let test_ph_item2 = {
  10. keyword: '3',
  11. searchVolume: '50',
  12. cpc: '1.23',
  13. competition: '0.71',
  14. results: '1000'
  15. };
  16.  
  17. let test_parsedKeywords = [
  18.  
  19. { name: 'top1',
  20. position: 1,
  21. topic: 'Electronics',
  22. category: 'Printers',
  23. phrase: [test_ph_item],
  24. related: []
  25. },
  26. { name: 'top2',
  27. position: 1,
  28. topic: 'Electronics',
  29. category: 'Printers',
  30. phrase: [test_ph_item2],
  31. related: []
  32. },
  33. { name: 'top2',
  34. position: 2,
  35. topic: 'Health & Household',
  36. category: 'Medical Supplies & Equipment',
  37. phrase:
  38. [
  39. test_ph_item,
  40. test_ph_item,
  41. test_ph_item,
  42. {
  43. keyword: 'Uniq kw',
  44. searchVolume: '55',
  45. cpc: '1.11',
  46. competition: '0.11',
  47. results: '1111'
  48. }
  49. ],
  50. related: [],
  51. },
  52. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement