HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <p>Open the console (Press F12) and Click 'Run' button.</p> <script> var bike1 = {brand:"Honda", color:"red"}; var bike2 = {brand:"Yamaha", color:"black"}; var bike3 = {brand:"Suzuki", color:"grey"}; console.table([bike1, bike2, bike3]); </script> </body> </html>
OUTPUT
×

Save as Private