In the Console column of Chrome: console.dir (object) can view the properties of the object, so what are the ways to view the object?

ChromeConsole:console.dir(object),?
Nov.24,2021

look directly on the console to see if there is a _ _ proto__:f ()

in his property.

write code to judge

Object.keys(obj).map(key=>({key,value:obj[key]})).filter(({_,value})=>value instanceof Function)
Menu