In [5]:
(function() {
    global.myGlobalProperty = "Hello, World!";
})()
global.myGlobalProperty;


Out[5]:
'Hello, World!'

In [6]:
Function.apply


Out[6]:
'Hello, World!'

In [7]:
$$svg$$ = "<svg><rect width=80 height=80 style='fill: orange;'/></svg>";


Out[7]:

In [8]:
var message = "This is an actual Javascript Notebook running in Jupyter. Incredible!";


Out[8]:
undefined