for each element in object
var obj = {
first: "John",
last: "Doe"
};
//
// Visit non-inherited enumerable keys
//
Object.keys(obj).forEach(function(key) {
console.log(key, obj[key]);
});
for each element in object
var obj = {
first: "John",
last: "Doe"
};
//
// Visit non-inherited enumerable keys
//
Object.keys(obj).forEach(function(key) {
console.log(key, obj[key]);
});
for each element in obj js
// Easy access to key and value :)
let myObj = {name: 'Jojo', family: 'Lopez'}
for (const [key, value] of Object.entries(myObj)) {
console.log('key is:', key);
console.log('value is:', value);
}
// key is: name
// value is: Jojo
// key is: family
// value is: Lopez
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us