Development JavaScript DHTML




function showProps(obj,objName) {
    var result = ""
    for (var i in obj) {
        result += objName + "." + i + " = " + obj[i] + "
"
    }
    return result
}



Here are the properties of the current window:



document.write(showProps(window, "window"))