I am trying to create a web browser cookie with JavaScript.
The cookie is created in page A but the JavaScript code in it should run only in Page B.
document.cookie = "alert('Hi');"
let x = document.cookie;
console.log(x);
How to create a cookie like I need here?