lct
lct

Reputation: 21

how do i get the previous 3 months using the current month in javascript?

im creating an rss reader that lists the news feeds from the last 3 months. how do i get the feeds of the last 3 months relative to the current date? right now i have a list of all the feeds.

Upvotes: 1

Views: 283

Answers (1)

Charles Stewart
Charles Stewart

Reputation: 11837

If the problem is that you can't access more than the ten items from the last two weeks of an RSS feed, then the problem is not on your side: most RSS feeds only offer the N most recent items from the source.

Upvotes: 1

Related Questions