Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

json data find

const object1 = {
a: 'somestring',
b: 42
};

console.log(Object.entries(object1));

// expected output:
// Array [Array ["a", "somestring"], Array ["b", 42]]
Source by infinitbility.com #
 
PREVIOUS NEXT
Tagged: #json #data #find
ADD COMMENT
Topic
Name
9+4 =