java-util

Does Javascript have Java's Calendar helper class?

i'm trying to use the Java version of: Date d = new Date(2010, Calendar.AUGUST, 28); but in Javascript: var d = new Date(2010, ???, 28); i cannot find a helper class that contains month constants? Does the Java helper Calendar class exist in Javascript? ...