I need to convert a string time (ie: 1100) to a DateTime using the current day/month/year and the given time.
This is what I'm currently doing, and isn't working properly...
data.BeginTime = 1100
beginTime = new Date(data.BeginTime)
EDIT:
I figured it out with the following:
var d = new Date();
var bT = new Date(d.getFullYear(), d.getMonth(), d.getDay(), data.BeginTime / 100, 0, 0, 0);