How can I format the year to show just the last two digits?

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.