Marko 6 automatically serializes values when necessary.
In this example, only the effect runs when the page loads in the browser, but it logs the `now` value that was generated on the server.
ALT <const/now = Date.now()/>
<effect() {
console.log(now);
}/>
<p>It is now ${now}</p>