Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

json data find

const object1 = {
a: 'somestring',
b: 42,
c: false
};
for(let value of Object.values(object1)){
console.log(value);
}
// expected output: 
// > "somestring"
// > 42
// > false
Source by infinitbility.com #
 
PREVIOUS NEXT
Tagged: #json #data #find
ADD COMMENT
Topic
Name
6+2 =