If the year is 2015, how can I use the format function to show just "15"?
This doesn't work
info.year.toString().format("%2s")
Ta.
var two_digit_year = info.year % 100;
var century = info.year / 100;
var two_digit_year = info.year - (century * 100);