console log vs console dir

JavaScript console.log vs console.dir

So what is the difference between console.log and console.dir in JavaScript?  Well, let’s take a look!  If we were to take this code: <!DOCTYPE html> <html> <head> <meta charset=”utf-8″> <title>console.log vs console.dir</title> </head> <body> <script> console.log(“Why, hello!”); console.dir(“Why, hello!”); </script> </body> </html> then put it …

Read More