Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
var date = "2012-01-18T16:03";
var date = new Date(date);

console.log(date.getMinutes());
console.log(date.getMinutes().length)

This return me 3. How can i make, that return me 03 etc? Why in this example .length return undefinded? I wanted checking length object, but in this example i'cant check this. If strlen == 0 then $num = (0 + $num);

share|improve this question

5 Answers

up vote 18 down vote accepted
var date = new Date("2012-01-18T16:03");

console.log( (date.getMinutes()<10?'0':'') + date.getMinutes() );
share|improve this answer

you should check if it is less than 10... not looking for the length of it , because this is a number and not a string

share|improve this answer

.length is undefined because getMinutes is returning a number, not a string. numbers don't have a length property. You could do

var m = "" + date.getMinutes();

to make it a string, then check the length (you would want to check for length === 1, not 0).

share|improve this answer

Numbers don't have a length, but you can easily convert the number to a string, check the length and then prepend the 0 if it's necessary:

var strMonth = '' + date.getMinutes();
if (strMonth.length == 1) {
  strMonth = '0' + strMonth;
}
share|improve this answer

I assume you would need the value as string. You could use the code below. It will always return give you the two digit minutes as string.

var date = "2012-01-18T16:03";
var date = new Date(date);
var min = date.getMinutes();

if (min < 10) {
min = '0' + min;
} else {
min = min + '';
}

console.log(min);

Hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.