Note Great circle distance Great circle distance Find the distance in kilometres between two points on the surface of the earth. This is just...
Tag: function
var myfunc = function(optional) { if (typeof optional == “undefined”) { optional = “default value”; } alert(optional); }