/    Sign up×
Community /Pin to ProfileBookmark

Return Saturday of the week for a given weekday

I need a javascript function that returns the Saturday of the week for a given week day. Example if I input 2/5/2010 I get 2/6/2010 or if I put 2/10/2010 I get 2/13/2010

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@mrhooFeb 05.2010 — [CODE]function getNextSaturdayinUSformatFromUSformat(datestring){
var d= new Date(Date.parse(datestring)),
wd= d.getDay(),
n=(wd)? (wd== 6? 7: 6-wd): 6;

d.setDate(d.getDate()+n);
return [d.getMonth()+1, d.getDate(), d.getFullYear()].join('/');
}[/CODE]

alert(getNextSaturdayinUSformatFromUSformat('2/10/2010'));
×

Success!

Help @steppinthrax spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.22,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...