Would you like to make your page more interactive? You can do that with a help of JavaScript. There are several ways to add it to your page:
click on Page settings and select Add Scripts to add your code there;
another way is to add an HTML widget to the page and add your code there. It should be wrapped by <script> tag.
<script>
......
</script>
e.g. You want your customers to see current date as a pop-up notification while opening your page, so you use this code:
<script>
let d = new Date();
alert("Today's date is " + d);
</script>
This is how it will look:
That's it! One last thing - JS effects will be shown on a published page only, it can't be seen in the editor itself.