Answers for "how to print some the properties of the object in javascript"

0

js print objects

// `depth` tells util.inspect() how many times to recurse while formatting the object, default is 2
console.dir(obj, {
  depth: 10
})

// ...or pass `null` to recurse indefinitely
console.dir(obj, {
  depth: null
})
Posted by: Guest on April-07-2022

Code answers related to "how to print some the properties of the object in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language