Share JSXGraph: example "Move To"

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

Move To

<button onclick="test();">Test</button>
// 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
});

let p = board.create('point', [0, 1]);

function test() {
    p.moveTo([1, 1], 500);
}