You can define the xmin, ymin, xmax, ymax directly if you want to zoom to a specific location different than your default extent. 4326 appears to be the projection id for WGS 84, so I'm assuming it uses decimal degrees for the units. If you wanted to zoom to Los Angeles by default you could declare it like this:
var startExtent = new esri.geometry.Extent(-119.5, 32.5, -116.5, 35.5, new esri.SpatialReference({ wkid: 4326 }));