Answers for "how can i find the number of properties in an object in javascript"

3

number of properties in object javascript

//To count objects own enumarable properties
const objectName={example:10}
console.log(Object.keys(objectName).length)
Posted by: Guest on March-25-2021

Code answers related to "how can i find the number of properties in an object in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language