Cookie view
4 years ago in HTML
<!DOCTYPE html>
<html>
<body>
<script>
const showCookie = document.cookie;
alert(`These are your cookies..... ${showCookie}`)
</script>
</body>
</html>