Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

json data find

const object1 = {
a: 'somestring',
b: 42
};
for (const [key, value] of Object.entries(object1)) {
  
  console.log(`${key}: ${value}`);
}

// expected output:
// "a: somestring"
// "b: 42"
Source by infinitbility.com #
 
PREVIOUS NEXT
Tagged: #json #data #find
ADD COMMENT
Topic
Name
8+6 =