isObject()
2022.08.13
Function to check if a value is an object.
#function#JavaScript
use client /components/post/reExport isObject() 2022.08.13 JavaScript https://antonarbus.com/imgs/js.png Function to check if a value is an object.
const isObject = (variable) => variable !== null && variable?.constructor?.name ===