//This script demonstrate the iteration over storage devices console.log("Storage Device Setting List"); var html = ""; for (var i = 0; i < LOADED_STORAGES.length; i++){ var thisStorage = LOADED_STORAGES[i]; html = html + "Name=" + thisStorage.Name + "
UUID=" + thisStorage.Uuid + "
Path=" + thisStorage.Path + "

"; } //Set Response header to html HTTP_HEADER = "text/html; charset=utf-8"; //Send Response sendResp(html);