The iselement()
function in lodash
checks if value
is likely a DOM element.
Here is an example of how to use the iselement()
function:
index.tsx218 chars9 lines
In the code block above, we first import the lodash
library. Then, we define an element with document.createElement()
and assign it to the variable divElement
. Finally, we use the iselement()
function to check if divElement
is a DOM element. The output of the function is true
which means that the element is a DOM element.
gistlibby LogSnag