Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

javascript - Compare dates as strings in typescript

I am trying to compare two dates as strings in typescript. The input I have is as below :-

startWindow = '05/2014'
endWindow = '05/2018'

I need to write a function to check if the start Window is greater than the end Window.

Both the inputs are of string type.

Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can convert it to a date and then compare them:

function convertDate(d)
{
	var parts = d.split('/');
	return new Date(parts[1], parts[0]);
}

var start = convertDate('05/2014');
var end = convertDate('05/2018');


alert(start < end);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...