How to check if a variable is an object in JavaScript

2 Answers

0 votes
const worker = {};
 
if (worker.constructor === Object) {
    console.log("object");
}
else {
    console.log("not object");
}
  
   
   
/*
run:
         
object 
       
*/

 



answered Nov 5, 2019 by avibootz
edited May 14, 2024 by avibootz
0 votes
const o = {
   lang: 'javascript'
};
  
console.log(typeof o === "object");
  
  
       
/*
run:
     
true
   
*/

 



answered May 14, 2024 by avibootz

Related questions

1 answer 129 views
1 answer 128 views
2 answers 210 views
2 answers 222 views
1 answer 157 views
...