admin管理员组文章数量:1346656
I would like to seperate the key and value from an object in typescript for that i have used the following code which returns only values but keys are not displayed.
Object.keys(data).forEach(key=> {
console.log('keys', data[key]);
});
But when i use the below function in javascript it gives me the key and value correctly can anyone tell me how to do the same in typescript to get the key and values from an object.
angular.forEach(data, function (value, column) {
columns.push(column);
values.push(value);
});
I would like to seperate the key and value from an object in typescript for that i have used the following code which returns only values but keys are not displayed.
Object.keys(data).forEach(key=> {
console.log('keys', data[key]);
});
But when i use the below function in javascript it gives me the key and value correctly can anyone tell me how to do the same in typescript to get the key and values from an object.
angular.forEach(data, function (value, column) {
columns.push(column);
values.push(value);
});
Share
Improve this question
asked Jun 19, 2017 at 13:16
Nidhin KumarNidhin Kumar
3,60912 gold badges45 silver badges81 bronze badges
2
-
In your first snippet you can just add
console.log(key)
and it will display keys as wel – Freeman Lambda Commented Jun 19, 2017 at 13:22 -
data.forEach((data)=>console.log(data.key + " " + data.value));
pure Javascript way to do it. – Hassan Imam Commented Jun 19, 2017 at 13:25
1 Answer
Reset to default 8What you get with data[key]
is the value:
Object.keys(data).forEach(key => {
console.log('key', key);
console.log('value', data[key]);
});
If you want to loop over an object, you can simply use for...in
too:
for (var key in data) {
if (data.hasOwnProperty(key)) {
console.log('key', key);
console.log('value', data[key]);
}
}
本文标签: javascriptHow to separate key and value pair from an object in typescriptStack Overflow
版权声明:本文标题:javascript - How to separate key and value pair from an object in typescript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743830010a2546344.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论