I attempted to retrieve only the Saturdays of upcoming months
with:
var momentDt = moment('2017-03-18').add(1);
//or 2 or 3
However, adding 1 results in April 18, 2017, which is a Tuesday.
Is there an easier way in moment to achieve this without having to determine the day of the week and subtracting it from the original date?