{ let hash = { key0: "value0", key1: "value1" }; Object.keys(hash).forEach(key => console.log('key:' + key + ' value:' + hash[key])); } ...
確定! 回上一頁