Show All cookies using JavaScript

  1. <!DOCTYPE html>  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4. </head>  
  5. <body>  
  6.     <script>  
  7.         console.log("Name of cookies:- " + document.cookie);  
  8.     </script>  
  9. </body>  
  10. </html>