Share JSXGraph: example "Fullscreen icon"

JSXGraph
Share JSXGraph: example "Fullscreen icon"
This website is a beta version. The official release will be in **2023**.

Fullscreen icon

Clicking on the fullscreen icon □ in the navigation bar displays the construction in full screen mode.
// Define the id of your board in BOARDID

const board = JXG.JSXGraph.initBoard(BOARDID, {
    showFullscreen: true,
    axis: true,
    boundingbox: [-5, 5, 5, -5],
    keepaspectratio: true
});
var p = board.create('point', [0, 1]),
    c = board.create('circle', [p, 2]);